Skip to content

Code Quality Checks #1196

Code Quality Checks

Code Quality Checks #1196

Workflow file for this run

name: Code Quality Checks
on:
push:
schedule:
- cron: '0 9 * * *' # every day at 9:00
jobs:
test:
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Fetch Git history
run: git fetch --no-tags --depth=50 origin main
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Check code-style format
run: yarn format:check
- name: Check Types
run: yarn types
- name: Test Build
run: yarn build