fix: update release.mjs sync:check guard to use tooling/sync path #194
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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: Check boiler-template sync | |
| run: pnpm sync:check | |
| - name: Run CI | |
| run: pnpm run ci |