Skip to content

Bump husky from 9.1.1 to 9.1.2 #717

Bump husky from 9.1.1 to 9.1.2

Bump husky from 9.1.1 to 9.1.2 #717

name: Continuous Integration
on:
push:
branches: [ master ]
paths-ignore: ['.github/**']
pull_request:
paths-ignore: ['.github/**']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Node v20
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run ESlint
run: yarn lint
- name: Run Build
run: yarn build