Support static translations #554
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: CI | |
on: | |
push: | |
branches: | |
- develop | |
- test/** | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint: | |
# Run GH Super-Linter against code base | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cat .github/super-linter.env >> $GITHUB_ENV | |
- name: Lint Code Base | |
uses: github/super-linter@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DEFAULT_BRANCH: master | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DOCKER_BUILDKIT: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
# Set staging bucket if on develop or test, otherwise it won't be set | |
# which is fine for a test build | |
- run: echo "ECHOLOCATOR_SETTINGS_BUCKET=echo-locator-stgdjango-config-us-east-1" >> $GITHUB_ENV | |
if: github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/test/') | |
- uses: aws-actions/configure-aws-credentials@v4 | |
if: github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/test/') | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: "us-east-1" | |
- run: ./scripts/bootstrap | |
if: github.ref != 'refs/heads/master' | |
- run: ./scripts/cibuild | |
- run: ./scripts/cipublish | |
if: github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/test/') | |
- run: | | |
docker compose -f docker-compose.yml -f docker-compose.ci.yml run --rm terraform -c " | |
unset AWS_PROFILE | |
./scripts/infra plan | |
./scripts/infra apply | |
" | |
if: github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/test/') |