Skip to content

fix: incorrect behavior of git hooks #7

fix: incorrect behavior of git hooks

fix: incorrect behavior of git hooks #7

Workflow file for this run

name: CI
on:
push:
branches: ['master']
pull_request:
branches: ['master']
jobs:
build:
name:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Check types
run: npm run typecheck
- name: Check formatting with Prettier
run: npm run check-formatting
- name: Lint with ESLint
run: npm run lint
- name: Run unit tests
run: npm run test
- name: Run build
run: npm run build