Merge pull request #706 from rowboatlabs/gh-prune

remove irrelevant gh workflows
This commit is contained in:
Ramnique Singh 2026-07-09 16:38:09 +05:30 committed by GitHub
commit 1d16d16f15
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 90 deletions

View file

@ -1,47 +0,0 @@
name: Rowboat Build
on:
pull_request:
jobs:
build-rowboat-nextjs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
cache-dependency-path: 'apps/rowboat/package-lock.json'
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
build-rowboatx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
cache-dependency-path: 'apps/rowboat/package-lock.json'
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm ci
working-directory: apps/cli
- name: Build Rowboat
run: npm run build
working-directory: apps/cli

View file

@ -1,43 +0,0 @@
name: Publish to npm
on: workflow_dispatch
permissions:
id-token: write # Required for OIDC
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: 24
registry-url: https://registry.npmjs.org/
- name: Update npm
run: npm install -g npm@latest
- name: Install deps
run: npm ci
working-directory: apps/cli
# optional: run tests
# - run: npm test
- name: Build
run: npm run build
working-directory: apps/cli
- name: Pack
run: npm pack
working-directory: apps/cli
- name: Publish to npm
run: npm publish --access public
working-directory: apps/cli