Add querystring param to cache-bust pages URL #62
Workflow file for this run
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: Lint, test and verify build | |
on: pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies with Yarn | |
run: yarn | |
- name: Lint source files | |
run: yarn lint | |
- name: Run unit tests | |
run: yarn test | |
- name: Process Lighthouse reports to generate reports.json | |
run: yarn process-reports | |
- name: Verify the static website builds without errors | |
run: yarn build |