Skip to content

chore(deps): bump zustand from 4.3.2 to 4.4.3 #1931

chore(deps): bump zustand from 4.3.2 to 4.4.3

chore(deps): bump zustand from 4.3.2 to 4.4.3 #1931

Workflow file for this run

name: Lint
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
run-linters:
name: Run linters
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 14
- name: Install Node.js dependencies
run: yarn install --frozen-lockfile
- name: Check prettier
run: yarn prettier-check
- name: Run linters
run: yarn lint
- name: Run Build
run: yarn build