Skip to content

Merge pull request #27 from fratercula/dependabot/npm_and_yarn/follow… #91

Merge pull request #27 from fratercula/dependabot/npm_and_yarn/follow…

Merge pull request #27 from fratercula/dependabot/npm_and_yarn/follow… #91

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1