Skip to content

Commit

Permalink
chore: add codecov upload step
Browse files Browse the repository at this point in the history
  • Loading branch information
Evyweb committed Nov 10, 2024
1 parent 264e22b commit 20c4fd0
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,19 @@ jobs:
node-version: 20.x
cache: "npm"

- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run build
- name: Install dependencies
run: npm ci

- name: Linting
run: npm run lint

- name: Tests
run: npm test:coverage

- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Build
run: npm run build

0 comments on commit 20c4fd0

Please sign in to comment.