Skip to content

Merge branch 'master' into generate-inline-svg #6

Merge branch 'master' into generate-inline-svg

Merge branch 'master' into generate-inline-svg #6

Workflow file for this run

# github action to run checks on PRs and pushes to master
name: Checks
on:
push:
branches:
- "*" # all branches
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test -- --coverage