Skip to content

ci: add build action and run lint #1

ci: add build action and run lint

ci: add build action and run lint #1

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- run: pnpm i
- run: pnpm run lint && pnpm run build