Skip to content

Commit

Permalink
Add github action to check production build
Browse files Browse the repository at this point in the history
  • Loading branch information
WillNilges committed Feb 3, 2024
1 parent b2dadda commit 782ebd0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/check-prod-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Run Production Build

on: [pull_request]

jobs:
npm-run-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: npm install
- name: Build Next.js app
run: npm run build

0 comments on commit 782ebd0

Please sign in to comment.