Skip to content

Add deployment script #23

Add deployment script

Add deployment script #23

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
- name: '📩 npm install'
run: npm install
- name: '💅 Prepare'
run: |
cp .env.example .env
npm run db:generate
- name: '🔍 TypeScript type checking'
run: npm run typecheck
- name: '🧹 Linting'
run: npm run lint
- name: '🏗 Build'
run: npm run build