Skip to content

docs: add server-sent events example #154

docs: add server-sent events example

docs: add server-sent events example #154

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Node.js v${{ matrix.nodejs }}
runs-on: ubuntu-latest
strategy:
matrix:
nodejs: [8, 10, 12]
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.nodejs }}
- name: Install
run: |
npm install
npm install -g nyc@13
- name: Bootstrap, Lint, and Test
run: nyc --exclude=tests npm test
- name: Report
if: matrix.nodejs >= 12
run: |
nyc report --reporter=text-lcov > coverage.lcov
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}