We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcb3648 commit 651333bCopy full SHA for 651333b
.github/workflows/test_typescript.yml
@@ -0,0 +1,27 @@
1
+name: Runs with TypeScript Tests
2
+on: pull_request
3
+
4
+jobs:
5
+ test:
6
+ runs-on: ubuntu-latest
7
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - uses: actions/setup-node@v1
11
12
+ - run:|
13
+ # Get local dependencies
14
+ npm install
15
+ # Make our new dom APIs
16
+ npm build
17
18
+ # Clone TypeScript, set it up
19
+ git clone https://github.com/microsoft/TypeScript
20
+ cd TypeScript
21
+ npm i
22
23
+ # Move in the generated dom APIs into a new version of TSC
24
+ cp -rf ../generated/* src/lib
25
26
+ # Run TypeScript's tests with the new DOM libs
27
+ npm test
0 commit comments