Skip to content

update changelog #63

update changelog

update changelog #63

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
build:
name: "test with node version ${{ matrix.node-version }}"
strategy:
matrix:
node-version: [14.x]
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test