Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 in /packages/geofire #346

Bump word-wrap from 1.2.3 to 1.2.4 in /packages/geofire

Bump word-wrap from 1.2.3 to 1.2.4 in /packages/geofire #346

Workflow file for this run

name: CI Tests
on:
- pull_request
- push
env:
CI: true
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 14.x
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache npm
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
- run: npm install
- run: npm run bootstrap
- run: npm run lint
- run: npm run test
- run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: packages/geofire/coverage/lcov.info