[Sweep GHA Fix] The GitHub Actions run failed with... #97
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: Checks | |
on: ["push", "pull_request"] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
working-directory: frontend | |
run: | | |
pnpm install | |
- name: Run svelte-check | |
working-directory: frontend | |
run: | | |
pnpm check | |
- name: Run prettier | |
working-directory: frontend | |
run: | | |
pnpm prettier --check . --ignore-path ../.gitignore |