Merge pull request #19 from tobyscott25/dependabot/npm_and_yarn/eslin… #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build app | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: # Allows the action to be run manually from GitHub UI | |
jobs: | |
build: | |
name: Build the NextJS app | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: npm install | |
- name: Build Next.js app | |
run: npm run build |