Update angular-cli monorepo to v18.2.7 #3557
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: PR | |
on: | |
pull_request: | |
branches: ['*'] | |
jobs: | |
init: | |
name: Init | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/init | |
- name: Cache all | |
uses: actions/cache@v3 | |
id: cache | |
with: | |
path: ./* | |
key: ${{ github.sha }} | |
lint: | |
name: Lint check | |
runs-on: ubuntu-latest | |
needs: [init] | |
steps: | |
- name: Cache all | |
uses: actions/cache@v3 | |
id: cache | |
with: | |
path: ./* | |
key: ${{ github.sha }} | |
- name: Check | |
run: npm run lint | |
format: | |
name: Format check | |
runs-on: ubuntu-latest | |
needs: [init] | |
steps: | |
- name: Cache all | |
uses: actions/cache@v3 | |
id: cache | |
with: | |
path: ./* | |
key: ${{ github.sha }} | |
- name: Check | |
run: npm run format | |
spell: | |
name: Spell check | |
runs-on: ubuntu-latest | |
needs: [init] | |
steps: | |
- name: Cache all | |
uses: actions/cache@v3 | |
id: cache | |
with: | |
path: ./* | |
key: ${{ github.sha }} | |
- name: Check | |
run: npm run spell | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: [init] | |
steps: | |
- name: Cache all | |
uses: actions/cache@v3 | |
id: cache | |
with: | |
path: ./* | |
key: ${{ github.sha }} | |
- name: Build | |
run: npm run build |