Skip to content

Bump husky from 9.1.1 to 9.1.5 #200

Bump husky from 9.1.1 to 9.1.5

Bump husky from 9.1.1 to 9.1.5 #200

Workflow file for this run

name: "ci: Code Standards & Testing"
on:
pull_request:
types: [synchronize, opened, reopened, ready_for_review]
push:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lintAndTest:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- name: "⬇️ Checkout Code"
uses: actions/checkout@v4
- name: "💚 Setup Node.js"
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- name: "📦 Install Packages"
run: yarn install
- name: "🕵️ Code Linting & Formatting"
run: yarn analyze:ci
- name: "🟦 Typecheck"
run: yarn analyze:types
# - name: '⚡️ Test'
# run: yarn test:ci