chore(*): update bun deps #3
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: ποΈ Build & Lint π οΈ | |
on: | |
- push | |
- pull_request | |
jobs: | |
setup: | |
name: π¦ Setup Dependencies π¦ | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: π° Setup BUN π° | |
uses: oven-sh/setup-bun@v1 | |
- name: π Install Dependencies π | |
run: bun install | |
- name: π¨ Build Project π¨ | |
run: bun run build:test | |
- name: π Lint Project π | |
run: bun run lint |