Skip to content

Bump postcss from 8.5.6 to 8.5.15 #46

Bump postcss from 8.5.6 to 8.5.15

Bump postcss from 8.5.6 to 8.5.15 #46

Workflow file for this run

name: BUG Client Tests
permissions:
contents: read
on:
push:
branches:
- "**"
paths:
- "src/client/**"
- "src/modules/**"
- ".github/workflows/test-bug-client.yml"
pull_request:
branches:
- "main"
paths:
- "src/client/**"
- "src/modules/**"
- ".github/workflows/test-bug-client.yml"
jobs:
client-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
name: Client Build & Test using Node.js ${{ matrix.node-version }}
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: cd src/client && npm test
- run: cd src/client && npm run build --if-present