Add vaccinations check to school transfer rake task #10156
Workflow file for this run
This file contains hidden or 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: Lint | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- uses: actions/setup-node@v4 | |
with: | |
cache: yarn | |
node-version-file: .tool-versions | |
- run: yarn install --immutable --immutable-cache --check-cache | |
- uses: hashicorp/setup-terraform@v3 | |
- uses: terraform-linters/setup-tflint@v4 | |
- run: tflint --chdir=terraform --init | |
- uses: jdx/mise-action@v2 | |
with: | |
install_args: hk pkl | |
- run: hk check --all |