Skip to content

0.15.0

0.15.0 #46

Workflow file for this run

name: Test Coverage
on:
push:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
# https://github.com/actions/setup-node
- name: Node Setup
uses: actions/setup-node@v3
with:
node-version: 18.16
- name: npm install & test
run: |
npm install
npm run test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Code Climate
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}