Skip to content

Update GitHub Actions in CI Workflows #86

Update GitHub Actions in CI Workflows

Update GitHub Actions in CI Workflows #86

Workflow file for this run

name: Test deployment
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm install --frozen-lockfile
- name: Test build website
run: |
npm run build:spec
npm run build:docs