We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39c3e87 commit f816637Copy full SHA for f816637
.github/workflows/node.js.yml
@@ -16,17 +16,18 @@ jobs:
16
17
strategy:
18
matrix:
19
- node-version: [18.x, 20.x, 22.x]
+ node-version: [22.x]
20
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21
22
steps:
23
- - uses: actions/checkout@v4
+ - name: Check out repository code
24
+ uses: actions/checkout@v4
25
- name: Use Node.js ${{ matrix.node-version }}
26
uses: actions/setup-node@v4
27
with:
28
node-version: ${{ matrix.node-version }}
29
cache: 'npm'
30
- run: npm ci
- - run: npm run build --if-present
31
- run: npm run lint
32
+ - run: npm run build --if-present
33
- run: npm test
0 commit comments