Skip to content

feat: Updated .github/workflows/main.yml #48

feat: Updated .github/workflows/main.yml

feat: Updated .github/workflows/main.yml #48

Workflow file for this run

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