Skip to content

add npm publish workflow #7

add npm publish workflow

add npm publish workflow #7

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "16.x"
- name: Install dependencies
run: "npm i"
- name: Test
id: "test"
run: "npm run test"