Skip to content

chore(deps-dev): bump @types/node from 20.14.14 to 22.1.0 #240

chore(deps-dev): bump @types/node from 20.14.14 to 22.1.0

chore(deps-dev): bump @types/node from 20.14.14 to 22.1.0 #240

Workflow file for this run

name: branch
on:
pull_request:
branches:
- master
jobs:
test:
name: Test on node ${{matrix.node}} and ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
node:
- 18
- 20
- 22
os:
- macos-latest
- ubuntu-latest
- windows-latest
env:
YARN_NODE_LINKER: node-modules
steps:
- uses: actions/[email protected]
with:
# awaiting https://github.com/facebook/jest/issues/11271
fetch-depth: 0
- uses: actions/[email protected]
with:
node-version: ${{matrix.node}}
# awaiting https://github.com/actions/checkout/pull/155
- run: git -c protocol.version=2 fetch --no-recurse-submodules --no-tags --progress --prune origin ${{github.event.pull_request.base.ref}}:${{github.event.pull_request.base.ref}}
- run: corepack enable
- run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
- run: yarn libyear
continue-on-error: true
- run: npm run libyear
continue-on-error: true
- run: pnpm libyear
continue-on-error: true
- run: yarn compile
- run: yarn test:ci:branch
- run: yarn lint:diff
- run: yarn format:diff --branch --check
timeout-minutes: 15