Skip to content

Commit

Permalink
Merge pull request #4 from internetarchive/fix-codecov
Browse files Browse the repository at this point in the history
Update CI to fix codecov and use more recent node version
  • Loading branch information
latonv authored Oct 3, 2024
2 parents 8974bcb + 4e29516 commit 52502aa
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 15.x
node-version: 18.x

- name: Install dependencies
run: npm install

- name: Run tests
run: npm run test

- name: Upload CodeCov
run: npm run codecov
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 52502aa

Please sign in to comment.