Skip to content

Commit

Permalink
feat: add GitHub Actions workflow for linting and type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
kang-kibong committed Oct 24, 2024
1 parent 1bdf9eb commit f4545c6
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Lint and Type Check

on:
pull_request:
# λͺ¨λ“  λΈŒλžœμΉ˜μ— λŒ€ν•΄ PR μ‹œ μ‹€ν–‰
branches:
- '**'
push:
# λͺ¨λ“  λΈŒλžœμΉ˜μ— λŒ€ν•΄ ν‘Έμ‹œ μ‹œ μ‹€ν–‰
branches:
- '**'

jobs:
lint:
name: Lint and Type Check
runs-on: ubuntu-latest

steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v3

# Set up Node.js environment
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'

# Install dependencies
- name: Install dependencies
run: npm ci

# Run ESLint to check for linting errors
- name: Run ESLint
run: npm run lint

# Run Prettier to check formatting
- name: Run Prettier Check
run: npm run format -- --check

# Run TypeScript compiler to check for type errors
- name: Run TypeScript Check
run: npm run tsc

0 comments on commit f4545c6

Please sign in to comment.