There was an error while loading. Please reload this page.
1 parent ce861a7 commit db5fdd5Copy full SHA for db5fdd5
1 file changed
.github/workflows/build.yml
@@ -7,24 +7,22 @@ on:
7
8
jobs:
9
test:
10
+ name: Run tests
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
- node-version: [20.x]
14
+ node-version: [22.x, 24.x]
15
steps:
- - name: Git checkout
16
- uses: actions/checkout@v3
17
- - name: Use Node.js ${{ matrix.node-version }}
18
- uses: actions/setup-node@v3
+ - name: Checkout
+ uses: actions/checkout@v6
+ - name: Setup Node.js ${{ matrix.node-version }}
19
+ uses: actions/setup-node@v6
20
with:
21
node-version: ${{ matrix.node-version }}
22
cache: "npm"
- - name: Install packages and symlink local dependencies
23
- run: |
24
- npm ci
25
- - name: Lint code
26
27
- npm run lint
+ - name: Install dependencies
+ run: npm ci
+ - name: Run linter
+ run: npm run lint
28
- name: Run tests
29
30
- npm test
+ run: npm test
0 commit comments