chore(deps): bump actions/upload-pages-artifact from 3 to 4 #270
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: Automated Tests | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-slim | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v6 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Validate fixtures | |
| run: npm run test:fixtures | |
| - name: Verify golden artifacts | |
| run: npm run golden:check | |
| - name: Check spelling | |
| run: node --run test:spelling | |
| - name: Check linting | |
| run: node --run lint | |
| - name: Run Unit Tests | |
| run: npm run test:unit | |
| - name: Check TypeScript types | |
| run: node --run test:types | |
| - run: echo "🍏 This job's status is ${{ job.status }}." |