Skip to content

[demo] [utils] [refactor] Minor refactoring and cleanup for the demo … #35

[demo] [utils] [refactor] Minor refactoring and cleanup for the demo …

[demo] [utils] [refactor] Minor refactoring and cleanup for the demo … #35

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
prettier:
name: Prettier Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- name: Check code formatting
run: npx prettier --check ./src
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: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- name: Run tests
run: npm run build:lib && npm test