Skip to content

feat: lint and pre-commit hook with Husky and eslint #67

feat: lint and pre-commit hook with Husky and eslint

feat: lint and pre-commit hook with Husky and eslint #67

Workflow file for this run

name: Unit Tests
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8
run_install: false
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test