File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 9
9
- uses : actions/checkout@v2
10
10
- uses : actions/setup-node@v1
11
11
with :
12
- node-version : ' 15'
12
+ node-version : " 15"
13
+ cache : npm
13
14
14
15
- run : npm ci
15
16
- run : npm run build
Original file line number Diff line number Diff line change 5
5
branches :
6
6
- main
7
7
8
- workflow_dispatch :
9
-
8
+ workflow_dispatch : null
10
9
jobs :
11
10
deploy :
12
11
runs-on : ubuntu-latest
@@ -17,18 +16,18 @@ jobs:
17
16
with :
18
17
node-version : " 15.x"
19
18
registry-url : " https://registry.npmjs.org"
19
+ cache : npm
20
20
21
21
- run : npm install
22
22
- run : npm run build
23
23
- run : npm test
24
-
24
+
25
25
- name : Create packages for .d.ts files
26
26
run : node deploy/createTypesPackages.mjs
27
-
27
+
28
28
# Deploy anything which differs from the npm version of a tsconfig
29
- - name : ' Deploy built packages to NPM'
29
+ - name : " Deploy built packages to NPM"
30
30
run : node deploy/deployChangedPackages.mjs
31
31
env :
32
32
NODE_AUTH_TOKEN : ${{ secrets.NODE_AUTH_TOKEN }}
33
33
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
34
-
Original file line number Diff line number Diff line change 9
9
- uses : actions/checkout@v2
10
10
- uses : actions/setup-node@v1
11
11
with :
12
- node-version : ' 15'
12
+ node-version : " 15"
13
+ cache : npm
13
14
14
15
- name : Run TypeScript Compiler Tests with new dom.d.ts
15
16
run : |
39
40
run : npx danger -- ci
40
41
env :
41
42
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
42
-
Original file line number Diff line number Diff line change 1
1
name : Update core dependencies
2
2
on :
3
- workflow_dispatch :
3
+ workflow_dispatch : null
4
4
schedule :
5
5
# https://crontab.guru/#5_8_*_*_*
6
6
- cron : " 5 8 * * *"
14
14
- uses : actions/checkout@v2
15
15
- uses : actions/setup-node@v1
16
16
with :
17
- node-version : ' 15'
17
+ node-version : " 15"
18
+ cache : npm
18
19
19
20
# Use ncu to detect major version changes
20
21
- run : npm i -g npm-check-updates
32
33
title : " chore(package): update core dependencies"
33
34
branch : update-core-deps
34
35
token : ${{ secrets.TS_GITHUB_BOT_AUTH }}
35
-
You can’t perform that action at this time.
0 commit comments