Skip to content

[refactor] Extract interfaces into the contract directory for reusabi… #7

[refactor] Extract interfaces into the contract directory for reusabi…

[refactor] Extract interfaces into the contract directory for reusabi… #7

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 test