Skip to content

Commit

Permalink
chore: upgrade actions
Browse files Browse the repository at this point in the history
  • Loading branch information
james-hu committed Aug 1, 2023
1 parent 8d82d2c commit fdf6ac3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand All @@ -26,7 +26,7 @@ jobs:
- run: npm ci
- run: npm test
- name: Upload test coverage report
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage
Expand Down

0 comments on commit fdf6ac3

Please sign in to comment.