Skip to content

fix: use correct output dir #5

fix: use correct output dir

fix: use correct output dir #5

Workflow file for this run

name: lint
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Setup dependencies
run: pnpm i
- name: Lint
run: pnpm lint