build(deps-dev): bump @angular-devkit/architect from 0.2001.2 to 0.2003.5 #360
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: Unit Test | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| checks: write | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install pnpm | |
| run: npm install -g pnpm | |
| - name: ⤵️ Check out code from GitHub | |
| uses: actions/checkout@v3 | |
| - name: 🏗 Setup node version | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22 | |
| cache: 'pnpm' | |
| - name: 🏗 Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: 🏗 Build Library | |
| run: pnpm build --if-present | |
| - name: 🧪 Run tests | |
| run: | | |
| pnpm test | |
| pnpm lint | |
| pnpm format:check |