Skip to content

refactor: moves types as close to where they define the interfaces as possible #64

refactor: moves types as close to where they define the interfaces as possible

refactor: moves types as close to where they define the interfaces as possible #64

Workflow file for this run

name: linting & test coverage
on:
push:
branches:
- main
pull_request:
env:
CI: true
defaults:
run:
shell: bash
jobs:
check:
strategy:
fail-fast: false
matrix:
node-version:
- 18.x
- 20.x
platform:
- ubuntu-latest
runs-on: ${{matrix.platform}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{matrix.node-version}}
- run: npm install
- run: npm run build
- run: npm run lint
if: matrix.platform == 'ubuntu-latest' && matrix.node-version == '20.x'
- run: npm run depcruise
- run: npm test