Skip to content

Commit

Permalink
[squashme] wip
Browse files Browse the repository at this point in the history
  • Loading branch information
thomass-dev committed Sep 23, 2024
1 parent 61256c0 commit 1adc76c
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Build frontend and share library
shell: bash
run: make build-frontend
- name: Vitest
run: cd frontend && npm run test:unit:coverage
- name: Report coverage
Expand All @@ -55,3 +52,15 @@ jobs:
with:
working-directory: ./frontend
pr-number: ${{ github.event.number }}

build:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Build
shell: bash
run: make build-frontend

0 comments on commit 1adc76c

Please sign in to comment.