Skip to content

Commit

Permalink
Merge pull request #38 from Rotzbua/feat_ci_node
Browse files Browse the repository at this point in the history
feat(test): add node 18, 20 and 22
  • Loading branch information
knolleary authored May 28, 2024
2 parents febae1e + 55758f3 commit aadfde3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16]
node-version: [14, 16, 18, 20, 22]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
Expand All @@ -29,6 +29,6 @@ jobs:
npm run coverage
- name: Publish to coveralls.io
if: ${{ matrix.node-version == 16 }}
uses: coverallsapp/github-action@v1.1.2
uses: coverallsapp/github-action@v2
with:
github-token: ${{ github.token }}

0 comments on commit aadfde3

Please sign in to comment.