Skip to content

Build

Build #195

Workflow file for this run

name: Build
run-name: Build
on:
workflow_run:
workflows: [Lint]
types: [completed]
branches:
- main
workflow_dispatch:
jobs:
build:
name: Run Build Process
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 17.x, 18.x, 19.x, 20.x, 21.x]
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Verify SSR Compatibility
run: |
major_version=$(node --version | cut -d 'v' -f 2 | cut -d '.' -f 1)
if [[ $major_version -ge 19 ]]; then
npm run validate:ssr
fi