Skip to content

update ci/cd add setup-projek #13

update ci/cd add setup-projek

update ci/cd add setup-projek #13

Workflow file for this run

name: Deploy
on:
push:
branches:
- releases/v1.0
jobs:
setup:
name: Setup bun
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Linting
run: bun run lint
- name: Build project
run: bun run build
# setup-projek:
# name: Setup project
# runs-on: ubuntu-latest
# steps:
# - name: Install dependencies
# run: bun install
# - name: Linting
# run: bun run lint
# - name: Build project
# run: bun run build