Skip to content

Merge branch 'main' of github.com:MichiganDataScienceTeam/website-red… #446

Merge branch 'main' of github.com:MichiganDataScienceTeam/website-red…

Merge branch 'main' of github.com:MichiganDataScienceTeam/website-red… #446

Workflow file for this run

# .github/workflows/build.yml
name: Next Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: Checkout source repository
uses: actions/checkout@v3
# https://github.com/actions/setup-node
- name: Setup Node.js installation
uses: actions/setup-node@v3
with:
# update the Node version to meet your needs
node-version: 16
cache: npm
- name: Install Dependencies
run: npm ci
- name: Build Next App
run: npm run build