mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-06-06 19:35:44 +02:00
commit
8db7fc263e
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