Skip to content

Commit

Permalink
ci: add check for backend
Browse files Browse the repository at this point in the history
  • Loading branch information
invertedEcho committed Jun 30, 2024
1 parent 8cdfbba commit d885338
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 6 deletions.
32 changes: 30 additions & 2 deletions .github/workflows/ci-frontend.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI - Frontend
name: CI

on:
push:
Expand All @@ -11,7 +11,7 @@ concurrency:
cancel-in-progress: true

jobs:
check:
check-frontend:
name: Format, Lint, Types
runs-on: ubuntu-latest

Expand All @@ -38,3 +38,31 @@ jobs:
- name: Check Types
run: pnpm types
working-directory: ./frontend

check-backend:
name: Format, Lint, Types
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- uses: pnpm/action-setup@v4
with:
version: 8

- name: Install deps
run: pnpm i
working-directory: ./backend

- name: Check Format
run: pnpm format:check
working-directory: ./backend

- name: Check Lint
run: pnpm lint
working-directory: ./backend

- name: Check Types
run: pnpm types
working-directory: ./backend
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# wg-app WIP

## (OUTDATED): User flow

https://excalidraw.com/#room=2a90cf068f4d87bce613,24I3dxykUBivS35QOdgTqw

## setup

- Install all dependencies
Expand Down
Empty file removed backend/README.md
Empty file.

0 comments on commit d885338

Please sign in to comment.