Update .forgejo/workflows/build-check.yml
This commit is contained in:
parent
a939c6ed65
commit
9d96d366bf
1 changed files with 60 additions and 66 deletions
|
@ -1,66 +1,60 @@
|
|||
# Workflow for building and testing Next.js site on non-master branches
|
||||
name: Build Check
|
||||
|
||||
on:
|
||||
# Runs on pushes to any branch except master
|
||||
push:
|
||||
branches-ignore: ["master"]
|
||||
|
||||
# Runs on pull requests targeting any branch
|
||||
pull_request:
|
||||
branches: ["*"]
|
||||
|
||||
# Allow multiple concurrent build checks
|
||||
concurrency:
|
||||
group: "build-check-${{ github.ref }}"
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build-check:
|
||||
runs-on: self-hosted
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: https://code.forgejo.org/actions/checkout@v4
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: https://code.forgejo.org/actions/setup-node@v4
|
||||
with:
|
||||
node-version: "20"
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Restore Next.js cache
|
||||
uses: https://code.forgejo.org/actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
.next/cache
|
||||
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
|
||||
|
||||
- name: Run linting
|
||||
run: npm run lint
|
||||
|
||||
- name: Build Next.js site
|
||||
run: npm run build
|
||||
|
||||
- name: Run tests (if available)
|
||||
run: |
|
||||
if npm run test --if-present; then
|
||||
echo "✅ Tests passed"
|
||||
else
|
||||
echo "ℹ️ No tests found or tests skipped"
|
||||
fi
|
||||
continue-on-error: true
|
||||
|
||||
- name: Build verification complete
|
||||
run: |
|
||||
echo "🎉 Build verification successful!"
|
||||
echo "✅ Dependencies installed"
|
||||
echo "✅ Linting passed"
|
||||
echo "✅ Build completed successfully"
|
||||
echo "Ready for review and merge!"
|
||||
# Workflow for building and testing Next.js site on non-master branches
|
||||
name: Build Check
|
||||
|
||||
on:
|
||||
# Runs on pushes to any branch except master
|
||||
push:
|
||||
branches-ignore: ["master"]
|
||||
|
||||
# Runs on pull requests targeting any branch
|
||||
pull_request:
|
||||
branches: ["*"]
|
||||
|
||||
# Allow multiple concurrent build checks
|
||||
concurrency:
|
||||
group: "build-check-${{ github.ref }}"
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build-check:
|
||||
runs-on: self-hosted
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: https://code.forgejo.org/actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Restore Next.js cache
|
||||
uses: https://code.forgejo.org/actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
.next/cache
|
||||
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
|
||||
|
||||
- name: Run linting
|
||||
run: npm run lint
|
||||
|
||||
- name: Build Next.js site
|
||||
run: npm run build
|
||||
|
||||
- name: Run tests (if available)
|
||||
run: |
|
||||
if npm run test --if-present; then
|
||||
echo "✅ Tests passed"
|
||||
else
|
||||
echo "ℹ️ No tests found or tests skipped"
|
||||
fi
|
||||
continue-on-error: true
|
||||
|
||||
- name: Build verification complete
|
||||
run: |
|
||||
echo "🎉 Build verification successful!"
|
||||
echo "✅ Dependencies installed"
|
||||
echo "✅ Linting passed"
|
||||
echo "✅ Build completed successfully"
|
||||
echo "Ready for review and merge!"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue