Skip to content

Bump husky from 9.0.2 to 9.1.6 #3421

Bump husky from 9.0.2 to 9.1.6

Bump husky from 9.0.2 to 9.1.6 #3421

Workflow file for this run

name: Unit tests
on:
push:
branches-ignore:
- gh-pages
paths:
- package.json
- package-lock.json
- prisma/**
- src/**
- tsconfig.json
- jest.config.js
- .github/workflows/integration-tests.yml
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install dependencies
run: npm install
- name: Build the app
run: npm run build
- name: Run unit tests
run: npm run test