Skip to content

Update README.md

Update README.md #16

Workflow file for this run

name: Check Next.js
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22' # or match the version in .nvmrc or package.json
- name: Install dependencies
run: npm ci
- name: Build the app
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
run: npm run build