File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -14,27 +14,22 @@ jobs:
14
14
run :
15
15
shell : pwsh
16
16
17
- # Steps represent a sequence of tasks that will be executed as part of the job
18
17
steps :
19
18
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
20
19
- uses : actions/checkout@v2
21
20
22
21
- name : Setup Node.js environment
23
22
uses : actions/setup-node@v2.1.0
24
23
25
- # Runs a single command using the runners shell
26
24
- name : Rename proposed dts to old
27
25
run : Move-Item ./vscode.proposed.d.ts ./old.vscode.proposed.d.ts
28
26
29
- # Runs a single command using the runners shell
30
27
- name : npm install
31
28
run : npm install
32
29
33
- # Runs a single command using the runners shell
34
30
- name : Get latest proposed dts
35
31
run : npm run download-api
36
32
37
- # Runs a set of commands using the runners shell
38
33
- name : Generate new dts and compare it with the old one
39
34
run : |
40
35
# This will contain the content of our new file
You can’t perform that action at this time.
0 commit comments