Skip to content

✨[core]Refactor case conversion commands and enhance testing suite #1

✨[core]Refactor case conversion commands and enhance testing suite

✨[core]Refactor case conversion commands and enhance testing suite #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-build:
name: Lint & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run compile
test:
name: Test
runs-on: ubuntu-latest
needs: lint-and-build
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run compile
- name: Run tests (with virtual display)
run: xvfb-run -a npm test