Commit 2db4615 1 parent f3e9d1f commit 2db4615 Copy full SHA for 2db4615
File tree 1 file changed +36
-2
lines changed
1 file changed +36
-2
lines changed Original file line number Diff line number Diff line change 18
18
steps :
19
19
- name : Check out code
20
20
uses : actions/checkout@v4
21
- with :
22
- fetch-depth : 2
23
21
24
22
- name : Setup Node.js environment
25
23
uses : actions/setup-node@v4
@@ -34,13 +32,37 @@ jobs:
34
32
needs : [initialize]
35
33
runs-on : ubuntu-latest
36
34
steps :
35
+ - name : Check out code
36
+ uses : actions/checkout@v4
37
+
38
+ - name : Setup Node.js environment
39
+ uses : actions/setup-node@v4
40
+ with :
41
+ node-version : 18
42
+ cache : " yarn"
43
+
44
+ - name : Install dependencies
45
+ run : yarn --frozen-lockfile
46
+
37
47
- name : Lint
38
48
run : yarn lint
39
49
40
50
typecheck :
41
51
needs : [initialize]
42
52
runs-on : ubuntu-latest
43
53
steps :
54
+ - name : Check out code
55
+ uses : actions/checkout@v4
56
+
57
+ - name : Setup Node.js environment
58
+ uses : actions/setup-node@v4
59
+ with :
60
+ node-version : 18
61
+ cache : " yarn"
62
+
63
+ - name : Install dependencies
64
+ run : yarn --frozen-lockfile
65
+
44
66
- name : Typecheck
45
67
run : yarn build:ci
46
68
49
71
runs-on : ubuntu-latest
50
72
timeout-minutes : 10
51
73
steps :
74
+ - name : Check out code
75
+ uses : actions/checkout@v4
76
+
77
+ - name : Setup Node.js environment
78
+ uses : actions/setup-node@v4
79
+ with :
80
+ node-version : 18
81
+ cache : " yarn"
82
+
83
+ - name : Install dependencies
84
+ run : yarn --frozen-lockfile
85
+
52
86
- name : Unit Tests
53
87
run : yarn test:ci
You can’t perform that action at this time.
0 commit comments