Skip to content

fix: Adds a new section on building the app for production. #25

fix: Adds a new section on building the app for production.

fix: Adds a new section on building the app for production. #25

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PNPM
uses: pnpm/action-setup@v3
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install Dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Check format
run: pnpm format:check
- name: Build Remix
run: pnpm build:remix
- name: Build Server
run: pnpm build:server