Skip to content

fix: people status on identity sync #6904

fix: people status on identity sync

fix: people status on identity sync #6904

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check-license:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Check License Lines
uses: kt3k/license_checker@v1.0.6
# NOTE: replace `markdown-link-check` with <https://github.com/UmbrellaDocs/linkspector> when
# Github Action is available.
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Check Markdown Links
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
base-branch: main
use-quiet-mode: 'yes'
check-modified-files-only: 'yes'
config-file: 'check-markdown-links-config.json'
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn build
- run: yarn lint
- run: yarn test
validate-locales:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
- run: yarn install
- run: yarn run locale:validate
all:
needs: [check-license, markdown-link-check, build, validate-locales]
runs-on: ubuntu-latest
steps:
- run: echo Success