Skip to content

Commit

Permalink
Merge pull request #66 from ProjectMirador/update-github-actions
Browse files Browse the repository at this point in the history
Update Github CI workflow
  • Loading branch information
cbeer authored Oct 29, 2024
2 parents 3f1b350 + 7dc21cc commit 95952cd
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,18 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 14.x
- run: npm install -g codecov
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
- run: codecov
- run: npm run lint
- run: npm run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3

0 comments on commit 95952cd

Please sign in to comment.