feat: Phase 4 - Enterprise features with custom templates, REST API, … #59
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
| name: Template Validation | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - name: Install deps | |
| run: | | |
| if [ -f package-lock.json ] || [ -f package.json ]; then | |
| npm ci || npm install | |
| fi | |
| - name: Create required directories | |
| run: mkdir -p completed-docs | |
| - name: Verify templates | |
| run: make verify |