Skip to content

Merge pull request #34 from EntchenEric/dependabot/npm_and_yarn/multi… #78

Merge pull request #34 from EntchenEric/dependabot/npm_and_yarn/multi…

Merge pull request #34 from EntchenEric/dependabot/npm_and_yarn/multi… #78

Workflow file for this run

name: Test Next.js App
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build Next.js app
run: npm run build
- name: Run tests
run: npm test