Skip to content

Fix husky compatibility #94

Fix husky compatibility

Fix husky compatibility #94

Workflow file for this run

name: Build
on:
push:
branches:
- master
paths-ignore:
- 'scripts/**'
- 'package.json'
- 'README.md'
- '**/release.yaml'
pull_request:
branches:
- master
paths-ignore:
- 'scripts/**'
- 'package.json'
- 'README.md'
- '**/release.yaml'
jobs:
build:
name: Build git-collab
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install node modules
run: yarn
- name: Lint
run: yarn lint
- name: Test
run: yarn test:ci
- name: Build
run: yarn build