Merge pull request #16 from rowboatlabs/dev

add ci for next.js
This commit is contained in:
Ramnique Singh 2025-02-04 17:32:29 +05:30 committed by GitHub
commit 8db7fc263e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

27
.github/workflows/rowboat-build.yml vendored Normal file
View file

@ -0,0 +1,27 @@
name: Rowboat Next.js Build
on:
pull_request:
paths:
- 'apps/rowboat/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
working-directory: apps/rowboat
- name: Build Rowboat
run: npm run build
working-directory: apps/rowboat