chore(deps): update angular-cli monorepo to v19 (major) #3732
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Tests | |
runs-on: ubuntu-latest | |
# run all 4 jobs in parallel and split the tests among them | |
strategy: | |
fail-fast: false | |
matrix: | |
containers: [1, 2, 3, 4] | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v2 | |
- name: Install dependencies 📦 | |
uses: cypress-io/github-action@v2 | |
with: | |
runTests: false | |
- name: Build 🏗 | |
run: npm run build | |
- name: Test 🧪 | |
run: npx cypress run-ct --record --parallel | |
env: | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
- name: Upload artifact | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: artifact | |
path: | | |
**/screenshots/**/*(failed).png | |
**/init.diff.png | |
**/videos/** |