chore(version): bump version to v1.1.2 #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |