Skip to content

Added Map component and installed needed libraries #390

Added Map component and installed needed libraries

Added Map component and installed needed libraries #390

Workflow file for this run

name: Coverage Status
on: ["push"]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, make test-coverage
run: |
yarn
yarn test-ci
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}