File tree Expand file tree Collapse file tree 3 files changed +16
-10
lines changed Expand file tree Collapse file tree 3 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,13 @@ jobs:
14
14
- name : Checkout
15
15
uses : actions/checkout@v4
16
16
17
- - name : Use Node.js 22
17
+ - name : Setup Node.js 22
18
18
uses : actions/setup-node@v4
19
19
with :
20
20
node-version : 22.x
21
21
cache : ' npm'
22
+
23
+ - name : Build project
22
24
run : |
23
25
npm ci
24
26
npm run build
Original file line number Diff line number Diff line change @@ -15,11 +15,13 @@ jobs:
15
15
- name : Checkout
16
16
uses : actions/checkout@v4
17
17
18
- - name : Run ESLint
18
+ - name : Setup Node.js 22
19
19
uses : actions/setup-node@v4
20
20
with :
21
21
node-version : 22.x
22
22
cache : ' npm'
23
- run : |
24
- npm ci
25
- npm run lint-no-fix
23
+
24
+ - name : Run ESLint
25
+ run : |
26
+ npm ci
27
+ npm run lint-no-fix
Original file line number Diff line number Diff line change @@ -20,12 +20,14 @@ jobs:
20
20
- name : Checkout
21
21
uses : actions/checkout@v4
22
22
23
- - name : Run tests on Node.js ${{ matrix.node-version }}
23
+ - name : Setup Node.js ${{ matrix.node-version }}
24
24
uses : actions/setup-node@v4
25
25
with :
26
26
node-version : ${{ matrix.node-version }}
27
27
cache : ' npm'
28
- run : |
29
- npm ci
30
- npm run test:unit
31
- npm run test:e2e
28
+
29
+ - name : Run tests on Node.js ${{ matrix.node-version }}
30
+ run : |
31
+ npm ci
32
+ npm run test:unit
33
+ npm run test:e2e
You can’t perform that action at this time.
0 commit comments