From ed0c2ee9a6825fee4f489c6a288e9ea720f3d444 Mon Sep 17 00:00:00 2001 From: Danilo Hoffmann Date: Thu, 9 Jan 2020 11:02:08 +0100 Subject: [PATCH] build: perform schematics test in CI pipeline --- .github/workflows/test.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f675cbeeb35..eb5be59ee5d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -101,6 +101,25 @@ jobs: name: dist path: dist + Schematics: + needs: [Build, Quality, Jest] + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Use Node.js 12 + uses: actions/setup-node@v1 + with: + node-version: 12 + + - name: Install root dependencies + uses: bahmutov/npm-install@v1 + + - name: Test Schematics + run: | + bash e2e/test-schematics.sh + sh scripts/ci-check-no-additional-warnings.sh + Cypress: needs: Build runs-on: ubuntu-latest