We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 807def9 commit 2b0f387Copy full SHA for 2b0f387
1 file changed
.github/workflows/test_typescript.yml
@@ -8,8 +8,10 @@ jobs:
8
steps:
9
- uses: actions/checkout@v2
10
- uses: actions/setup-node@v1
11
+ with:
12
+ node-version: '15'
13
- - name: Run TypeScript Compiler Tests with new dom.d.ts
14
+ - name: Run TypeScript Compiler Tests with new dom.d.ts
15
run: |
16
# Get local dependencies
17
npm install
@@ -24,17 +26,17 @@ jobs:
24
26
25
27
cd TypeScript
28
npm i
-
29
+
30
31
# Run TypeScript's tests with the new DOM libs, but don't fail
32
npm test || true
33
gulp baseline-accept
34
- # The git diff now is the difference between tests
35
+ # The git diff now is the difference between tests
36
git diff > baseline-changes.diff
37
38
- name: Danger
39
run: npm run danger -- ci
- env:
40
+ env:
41
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42
0 commit comments