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 f2a2670 commit f0c34deCopy full SHA for f0c34de
.github/workflows/cts.yml
@@ -0,0 +1,30 @@
1
+name: cts
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
11
+ - uses: actions/setup-node@v2
12
+ with:
13
+ node-version-file: '.nvmrc'
14
+ cache: 'yarn'
15
+ cache-dependency-path: 'yarn.lock'
16
17
+ - name: Install Dependencies
18
+ run: yarn install
19
20
+ - name: Generate client
21
+ run: yarn generate:js
22
23
+ - name: Build client
24
+ run: yarn client:build
25
26
+ - name: Generate CTS
27
+ run: yarn cts:generate
28
29
+ - name: Run CTS
30
+ run: yarn cts:test
0 commit comments