Skip to content

refactor(metadata.ts): remove themeColor from metadata to align with … #87

refactor(metadata.ts): remove themeColor from metadata to align with …

refactor(metadata.ts): remove themeColor from metadata to align with … #87

Workflow file for this run

name: Code check
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint
typecheck:
name: TS Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Run typecheck
run: npm run ts:check