Skip to content

feat: add frontend actions to check build status #2

feat: add frontend actions to check build status

feat: add frontend actions to check build status #2

Workflow file for this run

name: Build Frontend
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: |
cd frontend
yarn install
- name: Build frontend
run: |
cd frontend
yarn install && yarn build