update Daniel Vollmers #1970
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |