Skip to content

Remove website from dev mode and Don't allow /soon when dev is disabled #48

Remove website from dev mode and Don't allow /soon when dev is disabled

Remove website from dev mode and Don't allow /soon when dev is disabled #48

Workflow file for this run

name: Lint and Format
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npx eslint src --ext .js,.jsx,.ts,.tsx
- name: Run Prettier check
run: npx prettier --check "src/"