Skip to content

Commit

Permalink
ci: update codecov actions to use pnpm/action-setup@v3
Browse files Browse the repository at this point in the history
  • Loading branch information
d34dman committed Mar 30, 2024
1 parent e3c8f24 commit b1f01aa
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@ jobs:
runs-on: ubuntu-latest
name: Test drupal-jsonapi-params
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2
with:
node-version: '16'
- uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v3
- name: Install requirements
run: npm install
run: pnpm install
- name: Run tests and collect coverage
run: npm run test
run: pnpm run test
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v2

0 comments on commit b1f01aa

Please sign in to comment.