Skip to content

Commit

Permalink
build: perform schematics test in CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dhhyi committed Jan 11, 2020
1 parent 2d80e52 commit ed0c2ee
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ed0c2ee

Please sign in to comment.