Skip to content

Update @types/node 20.3.2 → 20.3.3 (patch) #229

Update @types/node 20.3.2 → 20.3.3 (patch)

Update @types/node 20.3.2 → 20.3.3 (patch) #229

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: [16, 18, 19, 20]
include:
- os: macos-latest
node_version: 18
- os: windows-latest
node_version: 18
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: yarn
- name: install
run: |
yarn install --immutable
- name: test
run: |
yarn test
- name: build
run: |
yarn build