chore: update dependencies / refact: swap super-linter for repo-specific config #652
Workflow file for this run
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: Linter | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 👀 Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: 🛠 Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: 📦 Install Dependencies | |
run: bun install --frozen-lockfile | |
- name: 📚 Lint Code Base | |
run: bun run lint | |
- name: 📚 Run Tests | |
run: bun run test |