We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05d2a74 commit 5d60fbaCopy full SHA for 5d60fba
.github/workflows/ci.yml
@@ -12,19 +12,19 @@ jobs:
12
strategy:
13
matrix:
14
node-version: [16.x, 18.x, 20.x, 22.x]
15
- os: [ ubuntu-latest, 'windows-latest' ]
+ os: [ubuntu-latest, 'windows-latest']
16
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
17
steps:
18
- uses: actions/checkout@v2
19
- name: Use Node.js ${{ matrix.node-version }}
20
- uses: actions/setup-node@v2
+ uses: actions/setup-node@v4
21
with:
22
node-version: ${{ matrix.node-version }}
23
cache: 'npm'
24
- run: npm ci
25
- run: npm run build --if-present
26
- run: npm test
27
- - name: Verify the command
+ - name: Verify the command
28
run: |
29
node $(jq -r '.bin' package.json) --version
30
0 commit comments