Skip to content

Bump husky from 9.1.6 to 9.1.7 #313

Bump husky from 9.1.6 to 9.1.7

Bump husky from 9.1.6 to 9.1.7 #313

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*, current]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: Installation
run: npm ci
- name: Test
run: |
npm test
npm run-script coverage
- name: Coveralls
uses: coverallsapp/github-action@master
continue-on-error: true
with:
github-token: ${{ secrets.GITHUB_TOKEN }}