From 6f567358d81e1debee635db98e27c67d669c4eac Mon Sep 17 00:00:00 2001 From: Pierre Millot Date: Thu, 2 Dec 2021 17:19:14 +0100 Subject: [PATCH] fix: test the cts on the CI --- .github/workflows/cts.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/cts.yml diff --git a/.github/workflows/cts.yml b/.github/workflows/cts.yml new file mode 100644 index 00000000000..ce512506f28 --- /dev/null +++ b/.github/workflows/cts.yml @@ -0,0 +1,30 @@ +name: cts + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - uses: actions/setup-node@v2 + with: + node-version-file: '.nvmrc' + cache: 'yarn' + cache-dependency-path: 'yarn.lock' + + - name: Install Dependencies + run: yarn install + + - name: Generate client + run: yarn generate:js + + - name: Build client + run: yarn client:build + + - name: Generate CTS + run: yarn cts:generate + + - name: Run CTS + run: yarn cts:test