Skip to content

Commit

Permalink
test: fix codecov action (#6726)
Browse files Browse the repository at this point in the history
  • Loading branch information
afc163 authored Aug 23, 2024
1 parent 0b752ca commit 333c6c8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: 20

- name: Install pnpm
id: pnpm-install
Expand Down Expand Up @@ -41,9 +41,10 @@ jobs:
- name: Test
run: pnpm test-with-coverage

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

- name: Build
Expand Down

0 comments on commit 333c6c8

Please sign in to comment.