Skip to content

fix(deps): update tsup, ts, types and changesets (#9) #63

fix(deps): update tsup, ts, types and changesets (#9)

fix(deps): update tsup, ts, types and changesets (#9) #63

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-node@v4.0.2
with:
node-version: 20.x
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run lint
- name: Tests
run: npm run test:coverage
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: npm run build