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 1b26a23 commit e14112dCopy full SHA for e14112d
.github/workflows/pipeline.yml
@@ -7,13 +7,15 @@ on:
7
branches: [ "main" ]
8
pull_request:
9
10
+env:
11
+ NODE_VERSION: 22.x
12
jobs:
13
install:
14
name: Install
15
runs-on: ubuntu-latest
16
strategy:
17
matrix:
- node-version: [22.x]
18
+ node-version: [$NODE_VERSION]
19
steps:
20
- uses: actions/checkout@v4
21
- name: Use Node.js ${{ matrix.node-version }}
@@ -28,6 +30,7 @@ jobs:
28
30
needs: [install]
29
31
32
33
+ - uses: actions/checkout@v4
34
- name: Build
35
run: npm run build --if-present
36
test:
0 commit comments