aaronjy-me/.github/workflows/build-and-test.yml
aaron a389a43b63
Some checks are pending
Deploy site / deploy (push) Waiting to run
Update .github/workflows/build-and-test.yml
2025-03-12 21:04:42 +00:00

39 lines
No EOL
804 B
YAML

name: Build and Test Next.js site
on:
pull_request:
branches: [ '*' ] # Wildcard matches all branches
workflow_dispatch:
jobs:
build-and-test:
runs-on: forgejo-runner-one
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Cache Next.js build
uses: actions/cache@v3
with:
path: |
~/.npm
.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-nextjs-