Skip to content

Configure ts so it doesnt error on lib types, allowing it to be enabled precommit (or in ci) #100

Configure ts so it doesnt error on lib types, allowing it to be enabled precommit (or in ci)

Configure ts so it doesnt error on lib types, allowing it to be enabled precommit (or in ci) #100

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: "package.json"
- run: npm install
- run: npm run lint
- run: npm run build
- run: npm run test-ci
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}