Skip to content

Refactor and generalize alert component #61

Refactor and generalize alert component

Refactor and generalize alert component #61

Workflow file for this run

name: Base Checks
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
lint-format-typecheck:
name: Lint, Format & Type Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: TypeScript Check
run: npx tsc --noEmit
- name: ESLint Check
run: npx eslint .
- name: Prettier Check
run: npx prettier --check "src/**/*.ts"