feat: upgrade to Angular 18 #469
Workflow file for this run
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: single-spa-angular | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
# Default cache directory for both Yarn and Cypress | |
path: ~/.cache | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18.13' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install dependencies | |
run: yarn --pure-lockfile | |
- name: Run ESLint | |
run: yarn lint | |
- name: Run Jest | |
run: yarn test:ci | |
- name: Build packages | |
run: yarn build | |
- name: Build integration apps | |
run: yarn build:all | |
- name: Run end-to-end tests via Cypress | |
env: | |
NO_UPDATE_CHECK: 1 | |
run: yarn test:ci:integration |