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 0b05bc6 commit 2b98bf8Copy full SHA for 2b98bf8
.github/workflows/node.js.yml
@@ -9,20 +9,23 @@ on:
9
pull_request:
10
branches: [ main ]
11
12
+permissions: {}
13
+
14
jobs:
15
build:
-
16
runs-on: ubuntu-latest
17
18
strategy:
19
matrix:
- node-version: [18.x]
20
+ node-version: [22.x]
21
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
22
23
steps:
- - uses: actions/checkout@v3
24
+ - uses: actions/checkout@v4
25
+ with:
26
+ persist-credentials: false
27
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v3
28
+ uses: actions/setup-node@v4
29
with:
30
node-version: ${{ matrix.node-version }}
31
cache: 'npm'
0 commit comments