Skip to content

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

Adding github actions to test build and deploy to github pages

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

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
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test build website
run: yarn build