Skip to content

chore: bump the all group with 5 updates #505

chore: bump the all group with 5 updates

chore: bump the all group with 5 updates #505

Workflow file for this run

name: test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
# waiting on: https://github.com/actions/setup-node/issues/531
- run: corepack enable
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
cache: "pnpm"
- name: Install deps and build
run: |
pnpm install --frozen-lockfile
pnpm build
rm -rf node_modules
- name: test built package on node@24
working-directory: ./package-test/
run: |
pnpm install --frozen-lockfile
node -v
node test.cjs
node test.mjs
# Not using a matrix here since it's simpler
# to just duplicate it and not spawn new instances
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 22
- name: test build package on node@22
working-directory: ./package-test/
run: |
node -v
node test.cjs
node test.mjs