fix: Fix API deployment issues on a small ECS task #800
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: "Workers" | |
on: | |
push: | |
branches: [ '**' ] | |
env: | |
WORKERS_BASE_IMAGE: python:3.9-slim-bullseye | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [ 16, 18 ] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/workflows/actions/setup | |
with: | |
node-version: ${{ matrix.node-version }} | |
- shell: bash | |
run: pnpm install | |
--include-workspace-root | |
--frozen-lockfile | |
--filter=workers... | |
--filter=webapp-emails... | |
- name: Build emails renderer | |
shell: bash | |
run: node_modules/.bin/nx run webapp-emails:build-vite | |
- name: Build | |
shell: bash | |
run: node_modules/.bin/nx run workers:build | |
test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: [ 16, 18 ] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/workflows/actions/setup | |
with: | |
node-version: ${{ matrix.node-version }} | |
- shell: bash | |
run: pnpm install | |
--include-workspace-root | |
--frozen-lockfile | |
--filter=workers... | |
- name: Lint workers | |
shell: bash | |
run: node_modules/.bin/nx run workers:lint | |
- name: Test workers | |
shell: bash | |
run: node_modules/.bin/nx run workers:test | |
- name: SonarCloud Scan | |
uses: sonarsource/sonarcloud-github-action@master | |
if: env.SONAR_ORGANIZATION != '' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
SONAR_ORGANIZATION: ${{ vars.SONAR_ORGANIZATION }} | |
SONAR_WORKERS_PROJECT_KEY: ${{ vars.SONAR_WORKERS_PROJECT_KEY }} | |
with: | |
projectBaseDir: packages/workers |