Skip to content

Commit f64ff10

Browse files
Merge branch 'rdfjs:master' into master
2 parents 611ba01 + 0ed985c commit f64ff10

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ on: [push, pull_request]
55
jobs:
66
build:
77
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
node-version: [18, 20, "lts/*"]
811

912
steps:
10-
- uses: actions/checkout@v2
11-
- uses: actions/setup-node@v1
12-
- run: yarn
13-
- run: yarn test
14-
- run: yarn lint
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: ${{ matrix.node-version }}
17+
- run: npm ci
18+
- run: npm test
19+
- run: npm run lint

0 commit comments

Comments
 (0)