Skip to content

Bump husky from 9.1.5 to 9.1.6 (#368) #1119

Bump husky from 9.1.5 to 9.1.6 (#368)

Bump husky from 9.1.5 to 9.1.6 (#368) #1119

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install yarn
run: npm i -g yarn
- name: build and test
run: |
yarn install --frozen-lockfile
yarn build
yarn test