Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
runs-on: ubuntu-latest

permissions:
id-token: write
contents: read

steps:
Expand All @@ -56,12 +57,18 @@ jobs:
- name: Install Node
uses: actions/[email protected]
with:
node-version: 18
node-version: 20

- name: Install Node dependencies
working-directory: ./frontend
run: npm ci

- name: Build the frontend
working-directory: ./frontend
run: npm run build
env:
UPLOAD_CODECOV_BUNDLE: "true"

- name: Test
working-directory: ./frontend
run: npm run coverage
Expand Down Expand Up @@ -112,7 +119,7 @@ jobs:
- name: Install Node
uses: actions/[email protected]
with:
node-version: 18
node-version: 20

- name: Install Node dependencies
working-directory: ./frontend
Expand Down
Loading
Loading