Añadir .github/workflows/build.yaml
Some checks failed
Build Project / build-job (push) Failing after 37s
Some checks failed
Build Project / build-job (push) Failing after 37s
This commit is contained in:
16
.github/workflows/build.yaml
vendored
Normal file
16
.github/workflows/build.yaml
vendored
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
name: Build Project
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
build-job:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Setup Bun
|
||||||
|
uses: oven-sh/setup-bun@v1
|
||||||
|
|
||||||
|
- name: Install and Build
|
||||||
|
run: |
|
||||||
|
bun install
|
||||||
|
bun run build
|
||||||
Reference in New Issue
Block a user