File tree Expand file tree Collapse file tree 1 file changed +23
-8
lines changed Expand file tree Collapse file tree 1 file changed +23
-8
lines changed Original file line number Diff line number Diff line change @@ -14,12 +14,18 @@ concurrency:
14
14
jobs :
15
15
setup-node :
16
16
name : Setup Dependencies
17
- uses : ./.github/workflows/node-setup.yml
18
- strategy :
19
- matrix :
20
- node-version : [22]
21
- with :
22
- node-version : ${{ matrix.node-version }}
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - name : Checkout repo
20
+ uses : actions/checkout@v4
21
+ - name : Set up Node.js
22
+ uses : actions/setup-node@v4
23
+ with :
24
+ node-version : 22
25
+ cache : ' npm'
26
+ - name : Install dependencies
27
+ run : npm ci
28
+
23
29
check_lint :
24
30
name : Validate package linting
25
31
runs-on : ubuntu-latest
28
34
- name : Checkout repo
29
35
uses : actions/checkout@v4
30
36
- name : Set up Node.js
31
- uses : ./.github/actions/cache-restore
37
+ uses : actions/setup-node@v4
38
+ with :
39
+ node-version : 22
40
+ cache : ' npm'
41
+ - run : npm ci
32
42
- name : Check Linting
33
43
run : npm run lint
44
+
34
45
check_format :
35
46
name : Validate package formatting
36
47
runs-on : ubuntu-latest
39
50
- name : Checkout repo
40
51
uses : actions/checkout@v4
41
52
- name : Set up Node.js
42
- uses : ./.github/actions/cache-restore
53
+ uses : actions/setup-node@v4
54
+ with :
55
+ node-version : 22
56
+ cache : ' npm'
57
+ - run : npm ci
43
58
- name : Check Formatting
44
59
run : npm run test:format
You can’t perform that action at this time.
0 commit comments