ci: update workflow for rewrite
This commit is contained in:
parent
a53cd53f55
commit
a2b520fbb6
|
|
@ -15,67 +15,23 @@ on:
|
||||||
- "*.md"
|
- "*.md"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
ci:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||||
|
|
||||||
env:
|
|
||||||
DATABASE_URL: "postgresql://opencut:opencut@localhost:5432/opencut"
|
|
||||||
BETTER_AUTH_SECRET: "supersecret"
|
|
||||||
NEXT_PUBLIC_SITE_URL: "http://localhost:3000"
|
|
||||||
UPSTASH_REDIS_REST_URL: "https://your-upstash-redis-url"
|
|
||||||
UPSTASH_REDIS_REST_TOKEN: "your-upstash-redis-token"
|
|
||||||
NEXT_PUBLIC_MARBLE_API_URL: "https://placeholder.example.com"
|
|
||||||
MARBLE_WORKSPACE_KEY: "placeholder"
|
|
||||||
FREESOUND_CLIENT_ID: "placeholder"
|
|
||||||
FREESOUND_API_KEY: "placeholder"
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install Rust wasm target
|
|
||||||
run: rustup target add wasm32-unknown-unknown
|
|
||||||
|
|
||||||
- name: Install wasm-pack
|
|
||||||
uses: jetli/wasm-pack-action@v0.4.0
|
|
||||||
with:
|
with:
|
||||||
version: latest
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Cache Rust build artifacts
|
- name: Setup toolchain
|
||||||
uses: actions/cache@v4
|
uses: moonrepo/setup-toolchain@v0
|
||||||
with:
|
with:
|
||||||
path: |
|
auto-install: true
|
||||||
~/.cargo/registry
|
auto-setup: true
|
||||||
~/.cargo/git
|
|
||||||
target
|
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
|
|
||||||
|
|
||||||
- name: Build WASM
|
- name: Run CI
|
||||||
run: wasm-pack build rust/wasm --target bundler --out-dir pkg
|
run: moon ci
|
||||||
|
|
||||||
- name: Install Bun
|
|
||||||
uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76
|
|
||||||
with:
|
|
||||||
bun-version: 1.2.18
|
|
||||||
|
|
||||||
- name: Cache Bun modules
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: ~/.bun/install/cache
|
|
||||||
key: ${{ runner.os }}-bun-1.2.18-${{ hashFiles('apps/web/bun.lock') }}
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
working-directory: apps/web
|
|
||||||
run: bun install
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
working-directory: apps/web
|
|
||||||
run: bun run build
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
working-directory: apps/web
|
|
||||||
run: echo "No tests implemented yet"
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue