chore(deps): update all non-major dependencies #2599
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: Test | |
permissions: | |
contents: read | |
pull-requests: write | |
on: | |
push: | |
branches: | |
- main | |
pull_request_target: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
- name: Use Node.js 22.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
registry-url: https://registry.npmjs.org/ | |
cache: pnpm | |
- run: pnpm i | |
- name: Build | |
run: pnpm run build | |
env: | |
NODE_OPTIONS: --max-old-space-size=8048 | |
- name: Typecheck | |
run: pnpm typecheck && pnpm test:attw | |
env: | |
NODE_OPTIONS: --max-old-space-size=8048 | |
- name: Test | |
run: pnpm run test | |
env: | |
NODE_OPTIONS: --max-old-space-size=8048 |