aaronjy-me/.github/workflows/build-and-test.yml
Aaron Yarborough 8685340d70
Swap to static file export (#2)
* feat: export as static files

* chore: remove tests
2025-03-09 18:50:53 +00:00

41 lines
No EOL
825 B
YAML

name: Build and Test Next.js site
on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ] # Wildcard matches all branches
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '23'
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-