Updates workflows working directory #231
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: Run Code Linter | |
on: | |
push: | |
branches: ["*"] | |
pull_request: | |
branches: ["*"] | |
jobs: | |
biome: | |
runs-on: ubuntu-latest | |
container: | |
image: oven/bun:latest | |
steps: | |
- name: Install Git and LFS | |
run: | | |
apt-get update | |
apt-get install -y git git-lfs | |
git --version | |
git lfs --version | |
- uses: actions/checkout@v4 | |
with: | |
lfs: false | |
- name: Checkout LFS | |
run: git lfs pull | |
working-directory: ${{ github.workspace }} | |
- name: Install Dependencies | |
run: bun install | |
working-directory: ${{ github.workspace }}/project | |
- name: Run Linter | |
run: bun run lint | |
working-directory: ${{ github.workspace }}/project |