File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ concurrency:
20
20
jobs :
21
21
prettier :
22
22
name : Prettier
23
+ # Don't run on the first run after creating from template. (run_number == 1).
24
+ if : github.run_number != 1
23
25
runs-on : ubuntu-latest
24
26
steps :
25
27
- name : Checkout
33
35
34
36
tests :
35
37
name : Unit Tests
38
+ # Don't run on the first run after creating from template. (run_number == 1).
39
+ if : github.run_number != 1
36
40
runs-on : ubuntu-latest
37
41
steps :
38
42
- name : Checkout
46
50
47
51
eslint :
48
52
name : ESLint
53
+ # Don't run on the first run after creating from template. (run_number == 1).
54
+ if : github.run_number != 1
49
55
runs-on : ubuntu-latest
50
56
steps :
51
57
- name : Checkout
61
67
62
68
types :
63
69
name : TypeScript
70
+ # Don't run on the first run after creating from template. (run_number == 1).
71
+ if : github.run_number != 1
64
72
runs-on : ubuntu-latest
65
73
steps :
66
74
- name : Checkout
Original file line number Diff line number Diff line change 3
3
"include" : [" src" ],
4
4
"compilerOptions" : {
5
5
"baseUrl" : " ." ,
6
- "module" : " ES2022" ,
7
- },
6
+ "module" : " ES2022"
7
+ }
8
8
}
You can’t perform that action at this time.
0 commit comments