Skip to content

fix: npm run build with pipeline #1

fix: npm run build with pipeline

fix: npm run build with pipeline #1

Workflow file for this run

name: Build Workflow
on:
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install Dependencies
run: npm install
- name: Build Next.js App
run: npm run build