Skip to content

package.json: bump to v2.0.0 #22

package.json: bump to v2.0.0

package.json: bump to v2.0.0 #22

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
build:
runs-on: '${{ matrix.os }}'
strategy:
matrix:
os:
- ubuntu-latest
node-version:
- 18.x
- 20.x
- 22.x
steps:
- name: 'Set up Node.js ${{ matrix.node-version }}'
uses: actions/setup-node@v1
with:
node-version: '${{ matrix.node-version }}'
- uses: actions/checkout@v2
- run: npm -v && node -v
- run: npm install && npm install --only=dev
- run: npm run test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}