Skip to content

Commit

Permalink
Add simple workflow to build frontend code
Browse files Browse the repository at this point in the history
  • Loading branch information
SchrodingersGat committed Sep 30, 2024
1 parent 8881dd6 commit 264afff
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/frontend.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Run CI checks for frontend code
name: Frontend CI

on: ["push", "pull_request"]

jobs:
frontend:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: "14"
- name: Install Deps
run: |
cd src/frontend
npm install
- name: Build Frontend
run: |
cd src/frontend
npm run build

0 comments on commit 264afff

Please sign in to comment.