release(epp--staging/epp-automation): Automatic release #21249
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: lint | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
manifests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Seemingly something mise installs breaks post-checkout. | |
# this runs a post-task after post-mise (for caching) but before post-checkout | |
- name: Clean up Mise | |
uses: gacts/run-and-post-run@v1 | |
with: | |
run: echo "Nothing" | |
post: mise implode -y | |
- name: Install tools | |
uses: jdx/mise-action@v2 | |
- name: Validate manifests | |
run: ./scripts/validate.sh |