Skip to content

Bump actions/checkout from 6 to 7 #1399

Bump actions/checkout from 6 to 7

Bump actions/checkout from 6 to 7 #1399

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build
- run: yarn test
- run: yarn lint
- run: yarn prettier --check .
- run: yarn start --test midgame --quit
- run: make test-npx-node-${{ matrix.node-version }}