Skip to content

add link to diff to CHANGELOG #60

add link to diff to CHANGELOG

add link to diff to CHANGELOG #60

Workflow file for this run

name: tests
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16, 18, 20]
steps:
- name: Reconfigure git to use HTTP authentication
uses: actions/checkout@v3
- run: >
git config --global url."https://github.com/".insteadOf
ssh://[email protected]/
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm i
- run: npm test