fix: make fullName/display name an empty string if null #2677
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: 'Continuous integration' | |
on: [push, pull_request] | |
jobs: | |
pre_job: | |
# continue-on-error: true # Uncomment once integration is finished | |
runs-on: ubuntu-latest | |
# Map a step output to a job output | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@v4 | |
with: | |
paths_ignore: '["**/README.md"]' | |
concurrent_skipping: 'same_content_newer' | |
build: | |
name: Test build | |
runs-on: 'ubuntu-latest' | |
environment: "Preview" | |
needs: pre_job | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
steps: | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v2.5.0 | |
with: | |
node-version: '18' | |
- name: 'Checkout Project' | |
uses: 'actions/checkout@v2' | |
with: | |
fetch-depth: 1 | |
- name: Install dependencies | |
run: yarn install --no-progress | |
- name: Lint code | |
run: yarn lint | |
- name: Run unit tests | |
run: yarn test | |
if: ${{ github.event_name == 'pull_request' }} | |
- name: Build project | |
run: yarn build | |
if: ${{ github.event_name != 'pull_request' }} | |
test-docker-compose: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Build the dev container | |
run: docker-compose build --no-cache --progress plain | |
env: | |
SIRV_CLIENT_SECRET_RO: ${{ secrets.SIRV_CLIENT_SECRET_RO }} | |
SIRV_CLIENT_SECRET_RW: ${{ secrets.SIRV_CLIENT_SECRET_RW }} | |
NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }} | |
AUTH0_CLIENT_SECRET: ${$ secrets.AUTH0_CLIENT_SECRET }} | |
AUTH0_MGMT_CLIENT_SECRET: ${$ secrets.AUTH0_MGMT_CLIENT_SECRET }} | |
- name: Start docker compose | |
run: docker-compose up -d | |
env: | |
SIRV_CLIENT_SECRET_RO: ${{ secrets.SIRV_CLIENT_SECRET_RO }} | |
- name: Wait for the site to be online | |
run: wget -qO- https://raw.githubusercontent.com/eficode/wait-for/$WAIT_FOR_VERSION/wait-for | sh -s -- -t 180 localhost:3000 -- echo "Site is up" | |
env: | |
WAIT_FOR_VERSION: 4df3f9262d84cab0039c07bf861045fbb3c20ab7 # v2.2.3 | |
- name: Stop containers | |
if: always() | |
run: docker-compose down |