Skip to content

fix(): set correct colors #4

fix(): set correct colors

fix(): set correct colors #4

Workflow file for this run

name: Node CI/CD
on:
push:
branches: [ main ]
defaults:
run:
working-directory: ./frontend
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
cache-dependency-path: ./frontend/pnpm-lock.yaml
- name: Install and Build
run: |
pnpm install
pnpm build:prod