Skip to content

Clean up types

Clean up types #625

Workflow file for this run

name: Build Status
on:
workflow_dispatch:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
- run: npm update
- run: npm ci
- run: npm test
- name: Codecov
uses: codecov/codecov-action@v3.1.1
with:
verbose: true