Skip to content

Commit

Permalink
DC-#125: cd frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
Lica200 committed Apr 30, 2024
1 parent 73c62a7 commit 2053d11
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run build --if-present
- run: npm test
- name: Checkout repository
uses: actions/checkout@v2

- name: Install Node.js
uses: actions/setup-node@v2

- name: Install dependencies
run: cd frontend && npm install

- name: Run tests
run: cd frontend && npm run test
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/[email protected]
env:
Expand Down

0 comments on commit 2053d11

Please sign in to comment.