Skip to content

Update @types/node 20.14.10 → 20.14.11 (patch) #1231

Update @types/node 20.14.10 → 20.14.11 (patch)

Update @types/node 20.14.10 → 20.14.11 (patch) #1231

Workflow file for this run

name: PR Checks
on:
pull_request:
types: [opened, reopened, labeled, synchronize]
jobs:
build:
name: Core Unit Tests node-${{ matrix.node_version }}, ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node_version: [20, 22]
include:
- os: macos-latest
node_version: 22
- os: windows-latest
node_version: 22
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: yarn
- name: install
run: yarn install --immutable
- name: test
run: yarn test
- name: build
run: yarn build