Skip to content

feat(points): points entry point and intro screen #25956

feat(points): points entry point and intro screen

feat(points): points entry point and intro screen #25956

Workflow file for this run

name: Check
on:
# ..any pull request, workflow dispatch and merge queue (covers main)
pull_request:
workflow_dispatch:
merge_group:
# Cron job to run checks @ 8:30 pm daily on the latest commit on the default branch - main
schedule:
- cron: '30 20 * * *'
# Cancel any in progress run of the workflow for a given PR
# This avoids building outdated code
concurrency:
# Fallback used github.ref_name as it is always defined
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
vulnerability:
name: Vulnerabilities
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/yarn-install
- run: ./scripts/ci_check_vulnerabilities.sh
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/yarn-install
- run: yarn run format:check
- run: yarn run lint
- run: yarn tsc -p .github/scripts
yarn-lock:
name: 'yarn.lock Up-to-date'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/yarn-install
- run: git diff --exit-code
licenses:
name: Licenses
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/yarn-install
- run: yarn check-licenses
knip-depcheck:
name: Dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/yarn-install
- run: yarn knip:depcheck
knip-regression:
name: Knip Regression
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: ./.github/actions/yarn-install
- run: yarn ts-node ./.github/scripts/checkKnipRegression.ts
env:
# Force color output in the terminal with chalk
# See https://github.com/chalk/supports-color/issues/106
FORCE_COLOR: 2