Merge pull request #69 from NishantGupt786/master #120
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 Check | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: | |
branches: | |
- main | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20.1' | |
- name: Install pnpm | |
run: npm install -g pnpm | |
- name: Install dependencies | |
run: | | |
cd devsoc24-portal-fe | |
pnpm install | |
- name: Build project | |
run: | | |
cd devsoc24-portal-fe | |
pnpm run build | |
- name: Check for build errors | |
run: | | |
if [ -d "devsoc24-portal-fe/.next" ]; then | |
echo "Build successful" | |
else | |
echo "Build failed" | |
exit 1 | |
fi |