260223:1415 20260223 nextJS & nestJS Best pratices
All checks were successful
Build and Deploy / deploy (push) Successful in 4m44s
All checks were successful
Build and Deploy / deploy (push) Successful in 4m44s
This commit is contained in:
24
.agents/skills/nestjs-best-practices/.github/workflows/branch-protection.yml
vendored
Normal file
24
.agents/skills/nestjs-best-practices/.github/workflows/branch-protection.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
name: Branch Protection
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
check-branch:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Block docs branch merge to main
|
||||
if: github.head_ref == 'docs'
|
||||
run: |
|
||||
echo "::error::Merging 'docs' branch into 'main' is not allowed."
|
||||
echo ""
|
||||
echo "The 'docs' branch contains the documentation website which should"
|
||||
echo "remain separate from the main skill files to keep installations lightweight."
|
||||
echo ""
|
||||
echo "If you need to sync changes, cherry-pick specific commits instead."
|
||||
exit 1
|
||||
|
||||
- name: Branch check passed
|
||||
if: github.head_ref != 'docs'
|
||||
run: echo "Branch check passed - not merging from docs branch"
|
||||
61
.agents/skills/nestjs-best-practices/.github/workflows/deploy.yml
vendored
Normal file
61
.agents/skills/nestjs-best-practices/.github/workflows/deploy.yml
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
name: Deploy to GitHub Pages
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [docs]
|
||||
paths:
|
||||
- 'website/**'
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
concurrency:
|
||||
group: pages
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
build:
|
||||
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
|
||||
cache-dependency-path: website/package-lock.json
|
||||
|
||||
- name: Setup Pages
|
||||
uses: actions/configure-pages@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
working-directory: website
|
||||
|
||||
- name: Build
|
||||
run: npm run build
|
||||
working-directory: website
|
||||
|
||||
- name: Copy index.html to 404.html for SPA routing
|
||||
run: cp website/dist/index.html website/dist/404.html
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v3
|
||||
with:
|
||||
path: website/dist
|
||||
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
steps:
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v4
|
||||
Reference in New Issue
Block a user