Skip to content

[ci] [version] [fix] Fix CI workflow #44

[ci] [version] [fix] Fix CI workflow

[ci] [version] [fix] Fix CI workflow #44

Workflow file for this run

name: ✨ Lint and Test ✨
on: [ push ]
jobs:
prettier:
name: 🎨 Prettier Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- name: Check code formatting
run: npm run prettier:check
eslint:
name: 🔍 ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- name: Run ESLint
run: npm run lint
test:
name: 🏗 Build & Tests
runs-on: ubuntu-latest
env:
FORCE_COLOR: true
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- name: Build
run: npm run build:lib
- name: Run tests
run: npm test