Skip to content

chore: release v5.0.1 #28

chore: release v5.0.1

chore: release v5.0.1 #28

Workflow file for this run

name: CI
on:
push:
branches: [ 'master', 'v*' ]
pull_request:
workflow_call:
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- uses: volta-cli/action@v3
with:
node-version: ${{ matrix.node-version }}
- name: Run Tests (Node ${{ matrix.node-version }})
run: |
npm install
npm run test:coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}