Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
103 changes: 0 additions & 103 deletions .eslintrc.js

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '22'
- name: Install the npm dependencies
run: |
npm install
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '22'

- name: Install Dependencies
run: npm install
Expand Down
54 changes: 43 additions & 11 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ concurrency:
cancel-in-progress: true

jobs:
code-quality:
name: Code Quality Checks
format-check:
name: Format Check (Prettier)
runs-on: ubuntu-latest

steps:
Expand All @@ -22,7 +22,30 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '22'

- name: Install dependencies
run: npm install

- name: Run Format Checks
run: |
echo "::group::Running Format Checks"
npm run format:check
echo "✓ Prettier passed"
echo "::endgroup::"

lint-check:
name: Lint Check (ESLint)
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'

- name: Install dependencies
run: npm install
Expand All @@ -33,18 +56,27 @@ jobs:
echo "Running ESLint..."
npm run lint
echo "✓ ESLint passed"
echo ""
echo "::endgroup::"

- name: Run Format Checks
run: |
echo "::group::Running Format Checks"
npm run format:check
echo "✓ Prettier passed"
echo ""
echo "::endgroup::"
type-check:
name: Type Check (TypeScript)
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'

- name: Install dependencies
run: npm install

- name: Build project
run: npm run build

- name: Run Type Checks
run: |
echo "::group::Running Type Checks"
Expand Down
115 changes: 0 additions & 115 deletions .github/workflows/vscode-code-quality.yml

This file was deleted.

Loading
Loading