We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3790fd4 commit 7ca9f07Copy full SHA for 7ca9f07
1 file changed
.github/workflows/build-test.yml
@@ -13,12 +13,15 @@ env:
13
jobs:
14
build:
15
runs-on: ubuntu-latest
16
+ strategy:
17
+ matrix:
18
+ node-version: [latest]
19
timeout-minutes: 10
20
steps:
21
- uses: actions/checkout@v6
22
- uses: actions/setup-node@v6
23
with:
- node-version: 21.x
24
+ node-version: ${{ matrix.node-version }}
25
- run: npm install
26
- run: npm run build
- - run: npm run lint
27
+ - run: npm run test
0 commit comments