Skip to content

first commit trial? #391

first commit trial?

first commit trial? #391

Workflow file for this run

name: Build all components
on:
push:
branches: ['main', 'build-action']
pull_request:
branches: ['main']
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
workspace:
- client
- server
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Check with ESLint
run: npm run lint --workspace ${{ matrix.workspace }}
build:
runs-on: ubuntu-latest
strategy:
matrix:
workspace:
- client
- server
- database
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Build app
run: npm run build --workspace ${{ matrix.workspace }}