chore: made the alert type optional #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: Run tests | |
# Controls when the action will run. | |
on: push | |
jobs: | |
tests: | |
name: Automated tests | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
# https://github.com/actions/setup-node | |
uses: actions/setup-node@v2 | |
- name: Prepare modules | |
run: npm install | |
- name: Run tests | |
run: npm test |