Skip to content

Adding github actions to test build and deploy to github pages #22

Adding github actions to test build and deploy to github pages

Adding github actions to test build and deploy to github pages #22

Workflow file for this run

name: Build
on:
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install --frozen-lockfile
- name: Test build website
run: npm build