Skip to content

πŸ“¦ Reduce docker image size #95

πŸ“¦ Reduce docker image size

πŸ“¦ Reduce docker image size #95

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths:
- 'server/**'
pull_request:
branches:
- main
paths:
- 'server/**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install (Server)
run: npx pnpm i
working-directory: server/src
- name: Lint (Server)
run: npm run lint
working-directory: server/src
- name: Test (Server)
run: npm run test
working-directory: server/src
- name: Build (Server)
run: npm run build
working-directory: server/src
- name: Install (Client)
run: npx pnpm i
working-directory: server/src/client/src
- name: Lint (Client)
run: npm run lint
working-directory: server/src/client/src
- name: Check (Client)
run: npm run check
working-directory: server/src/client/src
- name: Test (Client)
run: npm run test
working-directory: server/src/client/src
- name: Build (Client)
run: npm run build
working-directory: server/src/client/src