Skip to content

Merge pull request #42 from GoBeromsu/chore/improve-claude-md #191

Merge pull request #42 from GoBeromsu/chore/improve-claude-md

Merge pull request #42 from GoBeromsu/chore/improve-claude-md #191

Workflow file for this run

# Synced from obsidian-boiler-template/tooling/sync/index.mjs. Do not edit this file directly.
name: CI
on:
push:
branches: ['**']
pull_request:
types: [opened, synchronize, reopened]
env:
HUSKY: 0
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install pnpm
uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
- name: Lint
run: pnpm run lint
- name: Test
run: pnpm run test