docs: Add screenshots to multi-tenancy feature description docs #1441
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: "Backend" | |
on: | |
push: | |
branches: [ '**' ] | |
env: | |
SB_BACKEND_BASE_IMAGE: python:3.11-slim-bullseye | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [ 18, 20 ] | |
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=backend... | |
- name: Lint infra | |
shell: bash | |
run: pnpm nx run backend:lint:js | |
- name: Lint & test backend | |
shell: bash | |
run: pnpm nx run backend: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_BACKEND_PROJECT_KEY: ${{ vars.SONAR_BACKEND_PROJECT_KEY }} | |
with: | |
projectBaseDir: packages/backend |