Skip to content

Updated to Node 20 LTS #698

Updated to Node 20 LTS

Updated to Node 20 LTS #698

Workflow file for this run

# .github/workflows/frontend.yml
name: BUG Frontend
on:
push:
branches:
- "**"
paths-ignore:
- "**/README.md"
- "docs/**"
pull_request:
branches:
- "main"
paths-ignore:
- "**/README.md"
- "docs/**"
jobs:
frontend:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16]
defaults:
run:
working-directory: ./src/client
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
name: Frontend Build & Test using Node.js ${{ matrix.node-version }}
with:
node-version: ${{ matrix.node-version }}
- run: npm install --legacy-peer-deps
- run: npm test
- run: CI=false npm run build --if-present