Skip to content

Commit

Permalink
Add frontend CI checks
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyfallWasTaken committed Jun 20, 2024
1 parent 012dfb9 commit 1168b5d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/check-frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Check Vortex backend

on:
push:
branches:
- main

jobs:
run:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Bun
uses: oven-sh/setup-bun@v1

- name: Install dependencies
run: bun install

- name: Run svelte-check
run: bun run check

- name: Run Prettier and ESLint checks
run: bun run lint
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Check Vortex
name: Check Vortex backend

on:
push:
Expand All @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down

0 comments on commit 1168b5d

Please sign in to comment.