Skip to content

0.1.4: support hiding paths #6

0.1.4: support hiding paths

0.1.4: support hiding paths #6

Workflow file for this run

name: build
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Use Node.js latest
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install node dependencies
run: |
npm i -g pnpm
pnpm i
- name: Run lint
run: |
pnpm run lint
- name: Type check
run: |
pnpm run check
- name: Build
run: |
pnpm run build