Skip to content

Update date range advisory text to display no matter what range is selected #889

Update date range advisory text to display no matter what range is selected

Update date range advisory text to display no matter what range is selected #889

Workflow file for this run

name: ci
on: pull_request
jobs:
frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install Node dependencies
run: |
yarn install
- name: Lint the source code
run: yarn run lint
- name: Run front-end unit tests
run: yarn run test
- name: Update Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install webfonts
run: |
./scripts/fonts.sh
- name: Start local website server
run: |
yarn start &
sleep 5
- name: Run browser tests
run: yarn run cypress run