Skip to content

feat: add ci job to check project on PRs (#48) #4

feat: add ci job to check project on PRs (#48)

feat: add ci job to check project on PRs (#48) #4

Workflow file for this run

name: Project CI
on:
push:
branches: [ "main", "development" ]
pull_request:
branches: [ "main", "development" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Run Typecheck
run: npm run typecheck
- name: Run Lint
run: npm run lint
- name: Build project
run: npm run build