Skip to content

Bump express from 4.18.2 to 4.19.2 in /docs #192

Bump express from 4.18.2 to 4.19.2 in /docs

Bump express from 4.18.2 to 4.19.2 in /docs #192

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: '12'
- run: npm install
- run: gulp lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: '12'
- run: npm install
- name: RUN CI
run: xvfb-run --auto-servernum gulp test --coverage
- name: Publish Test Results
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
shell: bash
continue-on-error: true