Skip to content

feat: add docker-additional-args to deploy-ecs for build-push-ecr (#36) #131

feat: add docker-additional-args to deploy-ecs for build-push-ecr (#36)

feat: add docker-additional-args to deploy-ecs for build-push-ecr (#36) #131

Workflow file for this run

---
name: Checks
on: [push]
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# cache the ASDF directory, using the values from .tool-versions
- name: ASDF cache
uses: actions/cache@v4
with:
path: ~/.asdf
key: ${{ runner.os }}-asdf-v2-${{ hashFiles('.tool-versions') }}
id: asdf-cache
# only run `asdf install` if we didn't hit the cache
- uses: asdf-vm/actions/install@v3
if: steps.asdf-cache.outputs.cache-hit != 'true'
lint_scripts:
name: Lint Scripts
runs-on: ubuntu-latest
needs: setup
steps:
- uses: actions/checkout@v4
- name: ASDF cache
uses: actions/cache@v4
with:
path: ~/.asdf
key: ${{ runner.os }}-asdf-v2-${{ hashFiles('.tool-versions') }}
id: asdf-cache
- name: Setup ASDF environment
uses: mbta/actions/reshim-asdf@v2
- name: Shellcheck
run: shellcheck -a -S style .github/*.sh
- name: Check workflow files
run: actionlint -color