Skip to content

fix(plugins/verbose): replace unknown with any for log payloads #480

fix(plugins/verbose): replace unknown with any for log payloads

fix(plugins/verbose): replace unknown with any for log payloads #480

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
name: tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
fail-fast: true
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Download Deno
uses: denolib/setup-deno@v2
with:
deno-version: v1.x
- name: Lint sources
if: matrix.os == 'ubuntu-latest'
run: make lint
- name: Check format
if: matrix.os == 'ubuntu-latest'
run: make fmt-check
- name: Run tests
run: make test-coverage