Skip to content

feat: deployment frequency #3

feat: deployment frequency

feat: deployment frequency #3

Workflow file for this run

name: pr-checks
on:
pull_request:
merge_group:
push:
branches:
- main
concurrency:
group: ${{ github.head_ref }}

Check failure on line 9 in .github/workflows/pr.yml

View workflow run for this annotation

GitHub Actions / pr-checks

Invalid workflow file

The workflow is not valid. .github/workflows/pr.yml (Line: 9, Col: 10): Unexpected value ''
cancel-in-progress: true
jobs:
sqlfluff-lint:
name: Lint template with SQLFluff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet:actions/checkout@v3
- name: Install SQLFluff
run: pip install sqlfluff
- name: Lint template
run: sqlfluff lint --dialect sqlite .
prettier-yaml:
name: Lint/Format YAML with Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npx prettier --check '**/*.yaml'