Skip to content

fix(ghactions): fix ci after branch renaming #73

fix(ghactions): fix ci after branch renaming

fix(ghactions): fix ci after branch renaming #73

Workflow file for this run

name: ci
on:
push:
branches:
- dev
- main
- feature/build
pull_request:
branches:
- dev
- main
jobs:
build-frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16.x
- run: npm ci
- run: npm run lint
- run: npm run build
build-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: docker compose build --parallel