Didn't work, rolled back #228
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
# makes sure the frontend builds correctly | |
# eslint will fail this if something is wrong | |
name: Visitor Frontend Linting | |
on: | |
pull_request: | |
branches: [ mainline ] | |
jobs: | |
visitor_frontend_linting: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./site/visitor-console | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '12' | |
- run: npm install | |
- run: npm run build |