chore(deps): update typescript-eslint monorepo to v8.33.0 - autoclosed #1523
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: 'Tests: Unit' | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
types: [opened, synchronize] | |
jobs: | |
unit_tests: | |
name: Run unit tests | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.52.0-noble | |
options: --user 1001 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.12.1 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm run build | |
env: | |
PUBLIC_FATHOM_ID: ${{ secrets.PUBLIC_FATHOM_ID }} | |
PUBLIC_FATHOM_URL: ${{ secrets.PUBLIC_FATHOM_URL }} | |
- name: Test | |
run: pnpm run test:ci |