Skip to content

chore(deps): update all non-major dependencies #2599

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #2599

Workflow file for this run

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