build: update cross-repo angular dependencies #40
Workflow file for this run
This file contains hidden or 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: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: {} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Initialize environment | |
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0cdc70334fbc5d24f8196fa0e5bf7b27bf9796c3 | |
- name: Install node modules | |
run: pnpm install --frozen-lockfile | |
- name: Check Formatting | |
run: pnpm format --check | |
- name: Check Lint | |
run: | | |
pnpm tslint --project client/tsconfig.json | |
pnpm tslint --project server/tsconfig.json | |
pnpm tslint --project server/src/tests/tsconfig.json | |
pnpm tslint --project syntaxes/tsconfig.json | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Initialize environment | |
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0cdc70334fbc5d24f8196fa0e5bf7b27bf9796c3 | |
- name: Install node modules | |
run: pnpm install --frozen-lockfile | |
- name: Ensure Build | |
run: pnpm bazel build //:npm --config=release | |
- name: Run Tests | |
run: pnpm bazel test //... |