Skip to content

Merge branch 'main' into deps #652

Merge branch 'main' into deps

Merge branch 'main' into deps #652

Workflow file for this run

name: Build Next.js Site
on:
push:
branches:
- "*" # This will trigger the workflow on push to any branch
pull_request:
branches:
- main # This will trigger the workflow on pull requests targeting the main branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
run: npm i --legacy-peer-deps
- name: Build
run: npm run build