Skip to content

Added light mode support #2

Added light mode support

Added light mode support #2

Workflow file for this run

# .github/workflows/build.yml
name: Next Build
on:
push:
branches:
- "!main"
pull_request:
types: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: Checkout source repository
uses: actions/checkout@v3
# https://github.com/actions/setup-node
- name: Setup Node.js installation
uses: actions/setup-node@v3
with:
node-version: 21
cache: npm
- name: Install Dependencies
run: npm ci
- name: Build Next App
run: npm run build