Skip to content

Add CI pipeline and types #1

Add CI pipeline and types

Add CI pipeline and types #1

Workflow file for this run

name: CI Pipeline
on:
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20 ]
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