Skip to content

Commit

Permalink
Add frontend build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Yarik-Popov committed Sep 7, 2024
1 parent 4a2dbb4 commit 8e89a16
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/frontend_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Frontend Build
on: push
# pull_request:
# push:
# branches:
# - main

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
project: ['aro', 'mcc']

steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Build ${{matrix.project}}
run: |
cd ./gs/frontend/${{matrix.project}}
npm run build

0 comments on commit 8e89a16

Please sign in to comment.