Skip to content

chore(version): bump version to v1.1.2 #15

chore(version): bump version to v1.1.2

chore(version): bump version to v1.1.2 #15

Workflow file for this run

name: test
on:
push:
branches:
- '**'
tags:
- '**'
# Version tags have their own workflow
- '!v*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '16', '18', '20' ]
name: test on node ${{ matrix.node }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- name: Unit tests
run: npm run test:unit:once
- name: API tests
run: npm run test:api:once
- name: Coveralls (unit tests)
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}