Skip to content

fix: docker-compose typo #57

fix: docker-compose typo

fix: docker-compose typo #57

Workflow file for this run

name: React Frontend Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Check out repository
uses: actions/checkout@v5
- name: Use Node.js 20
uses: actions/setup-node@v5
with:
node-version: "20.14.0"
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Type check and build
run: npm run build