Skip to content

Disable PNPM recursive installation #44

Disable PNPM recursive installation

Disable PNPM recursive installation #44

Workflow file for this run

name: Node.js CI
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [
windows-latest,
ubuntu-latest
]
node-version: [
20.3.0
]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: |
- recursive: false
args: [--frozen-lockfile]
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Test project
run: pnpm test
env:
TOKEN: ${{ secrets.TOKEN }}
USER_ID: ${{ secrets.USERID }}
SESSION_ID: ${{ secrets.SESSIONID }}