Stimulus.js via importmap #4916
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: Lint | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: read | |
jobs: | |
rubocop: | |
name: Rubocop | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: ruby/setup-ruby@5daca165445f0ae10478593083f72ca2625e241d # v1.169.0 | |
with: | |
bundler-cache: true | |
- name: Rubocop | |
run: bundle exec rubocop | |
brakeman: | |
name: Brakeman | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: ruby/setup-ruby@5daca165445f0ae10478593083f72ca2625e241d # v1.169.0 | |
with: | |
bundler-cache: true | |
- name: Brakeman | |
run: bundle exec brakeman | |
kubeconform: | |
name: Kubeconform | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
kubernetes_version: ["1.22.0"] | |
environment: | |
- staging | |
- production | |
steps: | |
- name: login to Github Packages | |
run: echo "${{ github.token }}" | docker login https://ghcr.io -u ${GITHUB_ACTOR} --password-stdin | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: ruby/setup-ruby@5daca165445f0ae10478593083f72ca2625e241d # v1.169.0 | |
with: | |
bundler-cache: true | |
- name: krane render | |
run: | | |
gem exec --silent krane render -f config/deploy/$ENVIRONMENT --bindings=environment=$ENVIRONMENT --current-sha=$REVISION > config/deploy/$ENVIRONMENT.rendered.yaml | |
env: | |
ENVIRONMENT: "${{ matrix.environment }}" | |
REVISION: "${{ github.sha }}" | |
- uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 | |
with: | |
name: "${{ matrix.environment }}.rendered.yaml" | |
path: "config/deploy/${{ matrix.environment }}.rendered.yaml" | |
- name: kubeconform | |
uses: docker://ghcr.io/yannh/kubeconform:v0.6.3 | |
with: | |
entrypoint: "/kubeconform" | |
args: "-strict -summary -output json --kubernetes-version ${{ matrix.kubernetes_version }} config/deploy/${{ matrix.environment }}.rendered.yaml" |