Skip to content

chore: testing lefthook #4

chore: testing lefthook

chore: testing lefthook #4

Workflow file for this run

name: main
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
env:
CI: true
- name: Tests
run: pnpm test
env:
CI: true
- name: Build
run: pnpm build
env:
CI: true