Sanity Check #1732
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: Sanity Check | |
on: | |
schedule: | |
- cron: '0 12 * * *' | |
jobs: | |
scrape: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
registry-url: https://registry.npmjs.org | |
- name: install dep | |
run: npm ci | |
- name: build | |
run: npm run build | |
- name: install chromium | |
run: npm run chromium | |
- name: update fallback data | |
run: npm run update |