Skip to content

initial waterfall page replacement #6

initial waterfall page replacement

initial waterfall page replacement #6

Workflow file for this run

name: Next.js CI
on:
push:
branches: [dev]
pull_request:
branches: [dev, staging, main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install pnpm
run: npm install -g pnpm
- name: Install Dependencies
run: pnpm install
- name: Run Next.js Lint
run: pnpm run lint
# Disabled prettier check because it makes things much uglier :(
#- name: Check Formatting with Prettier
# run: npx prettier --check .
- name: Build the Next.js Project
run: pnpm run build