Skip to content

chore(frontend): fix ESLint warnings #45

chore(frontend): fix ESLint warnings

chore(frontend): fix ESLint warnings #45

Workflow file for this run

name: Frontend build
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build