Skip to content

Commit

Permalink
Create ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
pettermachado authored Sep 26, 2024
1 parent df490d7 commit fb04176
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
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

0 comments on commit fb04176

Please sign in to comment.