Skip to content

Add CI pipeline and types #2

Add CI pipeline and types

Add CI pipeline and types #2

Workflow file for this run

name: CI Pipeline
on:
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: 🛠 Checkout code
uses: actions/checkout@v3
- uses: pnpm/action-setup@v4
- name: 📦 Install dependencies
run: pnpm install
- name: ✏️ Lint code
run: pnpm lint
- name: 🛠️ Build project
run: pnpm build