Skip to content

build(all): fix pipeline #837

build(all): fix pipeline

build(all): fix pipeline #837

Workflow file for this run

name: Node CI Workflow
on:
push:
pull_request:
branches:
- V3
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '18', '20' ]
name: Node ${{ matrix.node }} test
steps:
- uses: actions/checkout@v4
- name: Install pnpm
- uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm --no-frozen-lockfile install
- run: pnpm test
- run: pnpm run test:tsd