chore(deps): bump the angular group across 1 directory with 3 updates #862
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: Lint and Format Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Lint and Format Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: '24.18.0' | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 | |
| with: | |
| version: 11.9.0 | |
| - name: Install addlicense | |
| run: | | |
| curl -sL https://github.com/google/addlicense/releases/download/v1.2.0/addlicense_v1.2.0_Linux_x86_64.tar.gz | tar xz -C /usr/local/bin addlicense | |
| chmod +x /usr/local/bin/addlicense | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run ESLint check | |
| run: pnpm run lint:check | |
| - name: Run Prettier check | |
| run: pnpm run format:check | |
| - name: Check license headers | |
| run: | | |
| addlicense -check -f scripts/header_template.txt \ | |
| --ignore "packages/shadcn/src/components/ui/**" \ | |
| --ignore "**/dist/**" \ | |
| --ignore "**/node_modules/**" \ | |
| ./packages/ |