Skip to content

feat(deps)!: upgrade to node 24 #198

feat(deps)!: upgrade to node 24

feat(deps)!: upgrade to node 24 #198

Workflow file for this run

name: Pull request
on:
pull_request:
branches:
- main
release:
types: [created]
jobs:
build:
runs-on: ${{ matrix.os }}
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
strategy:
matrix:
# note: macos-13 supports x86, whereas macos-latest supports arm64
os: [windows-latest, macos-latest, macos-13, ubuntu-latest]
# list only the earliest and latest node versions supported
# this makes PR builds more efficient
node-version: [20, 24]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn
- name: Run linter
run: yarn lint
- name: Build binaries
run: yarn build
- name: Run tests
run: yarn test