mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 00:16:29 +02:00
add ci for next.js
This commit is contained in:
parent
38fa36d8d0
commit
2691f1e5ec
1 changed files with 27 additions and 0 deletions
27
.github/workflows/rowboat-build.yml
vendored
Normal file
27
.github/workflows/rowboat-build.yml
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue