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:
2020jobs :
2121 prettier :
2222 name : Prettier
23+ # Don't run on the first run after creating from template. (run_number == 1).
24+ if : github.run_number != 1
2325 runs-on : ubuntu-latest
2426 steps :
2527 - name : Checkout
3335
3436 tests :
3537 name : Unit Tests
38+ # Don't run on the first run after creating from template. (run_number == 1).
39+ if : github.run_number != 1
3640 runs-on : ubuntu-latest
3741 steps :
3842 - name : Checkout
4650
4751 eslint :
4852 name : ESLint
53+ # Don't run on the first run after creating from template. (run_number == 1).
54+ if : github.run_number != 1
4955 runs-on : ubuntu-latest
5056 steps :
5157 - name : Checkout
6167
6268 types :
6369 name : TypeScript
70+ # Don't run on the first run after creating from template. (run_number == 1).
71+ if : github.run_number != 1
6472 runs-on : ubuntu-latest
6573 steps :
6674 - name : Checkout
Original file line number Diff line number Diff line change 33 "include" : [" src" ],
44 "compilerOptions" : {
55 "baseUrl" : " ." ,
6- "module" : " ES2022" ,
7- },
6+ "module" : " ES2022"
7+ }
88}
You can’t perform that action at this time.
0 commit comments