PXBF-1954-mobile-layout-updates: updated snaps #1375
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: Test Frontend | |
# yamllint disable-line rule:truthy | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- benefit-finder/* | |
pull_request: | |
paths: | |
- benefit-finder/* | |
permissions: read-all | |
defaults: | |
run: | |
working-directory: ./benefit-finder | |
jobs: | |
test_frontend: | |
name: test frontend | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: "./benefit-finder/package.json" | |
- name: Install Dependencies | |
run: npm ci | |
- name: Test Frontend | |
run: npm run test:coverage |