fix: optional handlers type logic #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: ubuntu-latest | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Setup Environment | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Clone repository | |
uses: actions/checkout@v2 | |
- name: Install Deno | |
uses: denolib/setup-deno@master | |
with: | |
deno-version: 1.x.x | |
- name: Log versions | |
run: | | |
deno --version | |
# Lint & Format | |
- name: Lint & Format TS | |
run: | | |
deno lint | |
# Start nats | |
- name: Create Nats cluster | |
uses: onichandame/nats-action@master | |
with: | |
port: '4222' # multiple different ports will start a cluster. single port will start a single server | |
# Tests | |
- name: Test TS | |
run: deno test -A --coverage=./cov --doc | |
- name: Generate lcov | |
shell: bash | |
# excludes tests, testdata, and generated sources from coverage report | |
run: | | |
deno coverage ./cov/ --lcov --exclude="tests\\.(ts|js)|wasm\\.js|testdata|node/_tools|node/_module/cjs|node_modules" > cov.lcov | |
- name: Upload coverage | |
uses: codecov/codecov-action@v1 | |
if: matrix.os != 'ubuntu-latest' | |
with: | |
name: ${{ matrix.os }}-${{ matrix.deno }} | |
files: cov.lcov | |
- name: Remove coverage report | |
shell: bash | |
if: matrix.os != 'ubuntu-latest' | |
run: | | |
rm -rf ./cov/ | |
rm cov.lcov |