Skip to content

Commit

Permalink
Merge branch 'rdfjs:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
TessavWalstijn authored Dec 1, 2024
2 parents 611ba01 + 0ed985c commit f64ff10
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, "lts/*"]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: yarn
- run: yarn test
- run: yarn lint
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
- run: npm run lint

0 comments on commit f64ff10

Please sign in to comment.