Skip to content

Fix GitHub pages deployment #285

Fix GitHub pages deployment

Fix GitHub pages deployment #285

Workflow file for this run

name: Build
on:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
version: [18, 20, 22]
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install dependencies
uses: ./.github/actions/install-dependencies
with:
node_version: ${{ matrix.version }}
- name: Test
uses: ./.github/actions/test
- name: Build
uses: ./.github/actions/build