Skip to content

build(deps-dev): bump tsd from 0.29.0 to 0.30.1 #482

build(deps-dev): bump tsd from 0.29.0 to 0.30.1

build(deps-dev): bump tsd from 0.29.0 to 0.30.1 #482

Workflow file for this run

name: Tests
on:
push:
branches:
- next
pull_request:
branches:
- '*'
env:
CI: true
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node-version: [14.x, 16.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm i
- name: Lint
run: npm run lint
- name: Run tests
run: npm run test:ci
- name: Coverage report
uses: codecov/codecov-action@v3.1.4