Skip to content

Update changelog, bump v1.1.0 #7

Update changelog, bump v1.1.0

Update changelog, bump v1.1.0 #7

Workflow file for this run

name: "Checks"
on:
push:
branches:
- main
- development
- "feature/*"
- "issue/*"
pull_request:
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
- 17.x
- 18.x
- 19.x
- 20.x
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: make test