Skip to content

Commit 7ca9f07

Browse files
committed
Update build-test.yml
1 parent 3790fd4 commit 7ca9f07

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/build-test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,15 @@ env:
1313
jobs:
1414
build:
1515
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
node-version: [latest]
1619
timeout-minutes: 10
1720
steps:
1821
- uses: actions/checkout@v6
1922
- uses: actions/setup-node@v6
2023
with:
21-
node-version: 21.x
24+
node-version: ${{ matrix.node-version }}
2225
- run: npm install
2326
- run: npm run build
24-
- run: npm run lint
27+
- run: npm run test

0 commit comments

Comments
 (0)