Skip to content

fix(deps): update dependency @msgpack/msgpack to v3 #17320

fix(deps): update dependency @msgpack/msgpack to v3

fix(deps): update dependency @msgpack/msgpack to v3 #17320

Workflow file for this run

name: test
on:
pull_request:
types: [opened, synchronize]
push:
concurrency:
group: ${{ startsWith(github.head_ref, 'renovate/') && 'renovate' || format('{0}-{1}', github.workflow, github.ref) }}
cancel-in-progress: ${{ !startsWith(github.head_ref, 'renovate/') }}
jobs:
build:
runs-on: ${{ matrix.os }}
name: "Node ${{ matrix.node }} / ${{ matrix.os }}"
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest, windows-latest]
node: [18.x, 20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Run test
run: |
npm ci
npm test
env:
NX_DISABLE_DB: true