File tree Expand file tree Collapse file tree 1 file changed +23
-2
lines changed Expand file tree Collapse file tree 1 file changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: Tests
2
2
3
3
on :
4
4
push :
5
- branches : [master, typescript-port ]
5
+ branches : [master, v9.0-integration ]
6
6
pull_request :
7
- branches : [master, typescript-port ]
7
+ branches : [master, v9.0-integration ]
8
8
workflow_dispatch :
9
9
10
10
jobs :
73
73
yarn tsc --version
74
74
yarn type-tests
75
75
76
+ are-the-types-wrong :
77
+ name : Check package config with are-the-types-wrong
78
+
79
+ needs : [build]
80
+ runs-on : ubuntu-latest
81
+ strategy :
82
+ fail-fast : false
83
+ matrix :
84
+ node : ['16.x']
85
+ steps :
86
+ - name : Checkout repo
87
+ uses : actions/checkout@v3
88
+
89
+ - uses : actions/download-artifact@v3
90
+ with :
91
+ name : package
92
+ path : .
93
+
94
+ - name : Run are-the-types-wrong
95
+ run : npx @arethetypeswrong/cli ./package.tgz
96
+
76
97
test-published-artifact-local :
77
98
name : Test Published Artifact (Local) ${{ matrix.example }}
78
99
You can’t perform that action at this time.
0 commit comments