Skip to content

chore(deps): bump actions/setup-node from 3 to 4 #245

chore(deps): bump actions/setup-node from 3 to 4

chore(deps): bump actions/setup-node from 3 to 4 #245

Workflow file for this run

name: CI build and test
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8.15.9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: pnpm run bootstrap
- run: pnpm run lint
- run: pnpm run build
env:
NODE_OPTIONS: --max-old-space-size=4096
- run: pnpm run test
env:
CI: true
NODE_OPTIONS: --max-old-space-size=4096