Skip to content

Commit

Permalink
chore: run tests against node 18 (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored Aug 16, 2022
1 parent f042074 commit cbfee1f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [12.x, 14.x, 16.x, 18.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: yarn
- name: install, test, lint and typecheck
run: |
yarn
Expand Down

0 comments on commit cbfee1f

Please sign in to comment.