Skip to content

Update the profile #2037

Update the profile

Update the profile #2037

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 14
uses: actions/setup-node@v1
with:
node-version: 14
- name: install and lint
working-directory: ./scripts
run: |
npm install
npm run lint
- name: update papers
working-directory: ./scripts
run: |
rm ../data/**/_Example.ttl
npm run papers
- name: build
working-directory: ./scripts
run: npm run build