Skip to content

chore(deps): Bump postcss from 8.5.19 to 8.5.25 in /client #114

chore(deps): Bump postcss from 8.5.19 to 8.5.25 in /client

chore(deps): Bump postcss from 8.5.19 to 8.5.25 in /client #114

Workflow file for this run

name: Pre-build Checks
permissions:
contents: read
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
pre-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: latest
- name: Pre-build server
run: |
cd server
npm install
npm run build
- name: Pre-build client
run: |
cd client
npm install
npm run build