chore(deps): update buildkite plugin docker-compose to v5 - autoclosed #390
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: tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | |
make test | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# This fetches all branches and tags, which helps us lint that we're using the current version | |
# in our examples. | |
fetch-depth: 0 | |
- run: | |
make lint | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
env: | |
SHELLCHECK_OPTS: -x | |
renovate-config: | |
name: Validate Renovate config | |
runs-on: ubuntu-latest | |
env: | |
RENOVATE_CONFIG_FILE: renovate.json | |
steps: | |
- uses: actions/checkout@v3 | |
- name: testing Renovate config | |
run: npx -p renovate renovate-config-validator |