Skip to content

feat: getPath(subpath) #26

feat: getPath(subpath)

feat: getPath(subpath) #26

Workflow file for this run

name: Test
on:
push:
branches: [develop]
pull_request:
branches: [master, develop]
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 9
run_install: true
- name: Build
run: pnpm build
- name: Test
run: pnpm test
- name: Test Node.js v18
run: pnpm --use-node-version=18.0.0 test
- name: Lint
run: pnpm lint