Unverified Commit 60b69072 authored by ThatOneCalculator's avatar ThatOneCalculator
Browse files

ci: 👷 move CI to Bun

parent 07cc7f15
name: Node.js CI name: Bun CI
on: on:
push: push:
branches: ['main'] branches: ['main']
pull_request: pull_request:
jobs: jobs:
build: build:
name: 'Fmt, Lint, & Build' name: 'Format & Build' # Format, Lint, & Build
env: env:
PUBLIC_API_BASE_URL: '' PUBLIC_API_BASE_URL: ''
runs-on: ubuntu-latest runs-on: ubuntu-latest
...@@ -14,14 +14,14 @@ jobs: ...@@ -14,14 +14,14 @@ jobs:
node-version: node-version:
- latest - latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }} - name: Use Bun
uses: actions/setup-node@v3 uses: oven-sh/setup-bun@v1
with: - run: bun --version
node-version: ${{ matrix.node-version }} - run: bun install --frozen-lockfile
- run: node --version # - run: bun run lint
- run: npm clean-install # - run: bun run lint:backend
- run: npm run fmt # - run: bun run lint:types
#- run: npm run lint - run: bun run format
#- run: npm run lint:types - run: bun run format:backend
- run: npm run build - run: bun run build
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment