Address an issue with the scroll behaviour and close button of the detailed view #119
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: Run front-end tests | |
on: | |
pull_request: | |
paths: | |
- 'frontend/**' | |
- '.github/workflows/frontend-*' | |
defaults: | |
run: | |
working-directory: frontend | |
jobs: | |
tests: | |
name: Run front-end tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Read .nvmrc | |
id: nvm | |
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)" | |
- name: Use Node.js (.nvmrc) | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "${{ steps.nvm.outputs.NVMRC }}" | |
- name: Cache node-modules | |
id: cache-node-modules | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: node-modules-${{ hashFiles('yarn.lock') }} | |
- name: Install Node.js dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: yarn install --immutable | |
- name: Run tests | |
run: yarn test |