Skip to content

Commit

Permalink
Remove if presents bun run build
Browse files Browse the repository at this point in the history
  • Loading branch information
HarleyZapata-Rurall committed Jun 3, 2024
1 parent 5a07bbd commit 18dd184
Showing 1 changed file with 27 additions and 9 deletions.
36 changes: 27 additions & 9 deletions .github/workflows/bunts.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,32 @@
name: bun CI
name: Bun CI

on: [push]

jobs:
my-job:
name: my-job
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [21.x]
steps:
# ...
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1

# run any `bun` or `bunx` command
- run: bun install
- run: bun index.ts
- run: bun run build
- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest # Puedes especificar una versión específica si lo prefieres

- name: Install dependencies
run: bun install

# Descomentar si tienes configuración para lint
# - name: Run lint
# run: bun lint

- name: Run build
run: bun run build

# Descomentar si tienes configuración para tests
# - name: Run tests
# run: bun test

0 comments on commit 18dd184

Please sign in to comment.