Skip to content

fix: remove Go to App button #14

fix: remove Go to App button

fix: remove Go to App button #14

Workflow file for this run

name: Lint and Format on PR
on:
pull_request:
workflow_dispatch:
jobs:
code-quality:
name: Code Quality Check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run TypeScript type check
run: yarn type-check
- name: Run ESLint
run: yarn lint
- name: Run Prettier check
run: yarn format:check
- name: Build project
run: yarn build