Skip to content

Commit

Permalink
Updates workflows working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
refringe committed Dec 22, 2024
1 parent 31ce3c3 commit b2953c3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,21 @@ jobs:
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: ./project
working-directory: ${{ github.workspace }}/project

- name: Run Linter
run: bun run lint
working-directory: ./project
working-directory: ${{ github.workspace }}/project
7 changes: 5 additions & 2 deletions .github/workflows/run-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,21 @@ jobs:
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: ./project
working-directory: ${{ github.workspace }}/project

- name: Run Tests
run: bun run test
working-directory: ./project
working-directory: ${{ github.workspace }}/project

0 comments on commit b2953c3

Please sign in to comment.