Skip to content

feature: add auth and hooks (#2) #7

feature: add auth and hooks (#2)

feature: add auth and hooks (#2) #7

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Format check
run: npm run format:check
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build