Skip to content

fix(deps): update angular #2088

fix(deps): update angular

fix(deps): update angular #2088

Workflow file for this run

name: Verify build
permissions:
contents: read
on:
workflow_dispatch:
pull_request_target:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: install
run: pnpm install --frozen-lockfile
- name: build
run: pnpm build
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: install
run: pnpm install --frozen-lockfile
- name: lint
run: pnpm lint
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: install
run: pnpm install --frozen-lockfile
- name: test
run: pnpm test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: install
run: pnpm install --frozen-lockfile
- name: prettier
run: pnpm exec prettier . --check