Skip to content

test: add test for relative path outside of project #25

test: add test for relative path outside of project

test: add test for relative path outside of project #25

Workflow file for this run

name: Test
on: [push]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18.x, 19.x, 20.x, 21.x, 22.x]
pnpm-version: [9.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use pnpm ${{ matrix.pnpm-version }}
uses: pnpm/action-setup@v4
with:
version: ${{ matrix.pnpm-version }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install node dependencies
run: pnpm install
- name: Run tests
run: pnpm test