Skip to content

Bump husky from 7.0.4 to 9.1.0 #718

Bump husky from 7.0.4 to 9.1.0

Bump husky from 7.0.4 to 9.1.0 #718

Workflow file for this run

name: CI/CD
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Run the tests
run: yarn test
- name: Build project
run: yarn build