Skip to content

Commit cbfee1f

Browse files
authored
chore: run tests against node 18 (#381)
1 parent f042074 commit cbfee1f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/nodejs.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [12.x, 14.x, 16.x]
12+
node-version: [12.x, 14.x, 16.x, 18.x]
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v2
17+
uses: actions/setup-node@v3
1818
with:
1919
node-version: ${{ matrix.node-version }}
20+
cache: yarn
2021
- name: install, test, lint and typecheck
2122
run: |
2223
yarn

0 commit comments

Comments
 (0)