update ci/cd add setup-projek #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |