Skip to content

Merge branch 'main' into LuluFreeDesign-patch-3 #4162

Merge branch 'main' into LuluFreeDesign-patch-3

Merge branch 'main' into LuluFreeDesign-patch-3 #4162

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
services:
postgres:
image: postgis/postgis
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: zlv
ports:
- 5432:5432
redis:
image: redis:7.2.4-alpine
ports:
- 6379:6379
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
s3:
image: adobe/s3mock:3.5.2
ports:
- 9090:9090
env:
initialBuckets: "zerologementvacant"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install
run: yarn install --immutable
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true
- name: Build
run: yarn workspaces foreach --exclude=. --exclude=@zerologementvacant/template -Apt run build
env:
CEREMA_TOKEN: token
DISABLE_ESLINT_PLUGIN: true
METABASE_TOKEN: token
- name: Lint
run: yarn lint
- name: Test
run: yarn test
env:
LOG_LEVEL: fatal
- name: Test database migrations
run: yarn workspace @zerologementvacant/server run test:migrations --run-in-band
deploy-front-staging:
uses: ./.github/workflows/deploy.yml
needs: [build]
with:
app: front-staging
branch: main
secrets: inherit
deploy-api-staging:
uses: ./.github/workflows/deploy.yml
needs: [build]
with:
app: api-staging
branch: main
secrets: inherit
deploy-queue-staging:
uses: ./.github/workflows/deploy.yml
needs: [build]
with:
app: queue-staging
branch: main
secrets: inherit
deploy-front-production:
uses: ./.github/workflows/deploy.yml
needs: [build]
with:
app: front-production
branch: prod
secrets: inherit
deploy-api-production:
uses: ./.github/workflows/deploy.yml
needs: [build]
with:
app: api-production
branch: prod
secrets: inherit
deploy-queue-production:
uses: ./.github/workflows/deploy.yml
needs: [build]
with:
app: queue-production
branch: prod
secrets: inherit