mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-07-12 21:02:17 +02:00
Merge pull request #706 from rowboatlabs/gh-prune
remove irrelevant gh workflows
This commit is contained in:
commit
1d16d16f15
2 changed files with 0 additions and 90 deletions
47
.github/workflows/rowboat-build.yml
vendored
47
.github/workflows/rowboat-build.yml
vendored
|
|
@ -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
|
||||
43
.github/workflows/x-publish.yml
vendored
43
.github/workflows/x-publish.yml
vendored
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue