Skip to content

chore(deps): update dependency husky to v8.0.3 #1697

chore(deps): update dependency husky to v8.0.3

chore(deps): update dependency husky to v8.0.3 #1697

Workflow file for this run

name: backend CI
on: push
defaults:
run:
working-directory: apps/backend
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node_modules
uses: actions/cache@preview
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-projectname-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }}
restore-keys: ${{ runner.os }}-projectname-
- name: Install node_modules
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- run: yarn build