Skip to content

comment out node setup (no next js app) #9

comment out node setup (no next js app)

comment out node setup (no next js app) #9

Workflow file for this run

name: Run Build Lint and test Next.js app
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
pull_request:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# - name: Detect package manager
# id: detect-package-manager
# run: |
# if [ -f "${{ github.workspace }}/yarn.lock" ]; then
# echo "manager=yarn" >> $GITHUB_OUTPUT
# echo "command=install" >> $GITHUB_OUTPUT
# echo "runner=yarn" >> $GITHUB_OUTPUT
# exit 0
# elif [ -f "${{ github.workspace }}/package.json" ]; then
# echo "manager=npm" >> $GITHUB_OUTPUT
# echo "command=ci" >> $GITHUB_OUTPUT
# echo "runner=npx --no-install" >> $GITHUB_OUTPUT
# exit 0
# else
# echo "Unable to determine package manager"
# exit 1
# fi
# - name: Setup Node
# uses: actions/setup-node@v4
# with:
# node-version: "20"
# cache: 'npm'
# # cache: ${{ steps.detect-package-manager.outputs.manager }}
# - name: Change src directory
# run: cd nextjs-app
- name: Install dependencies
# run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
# working-directory: ./nextjs-app
# run: npm install
run: echo "Installing Next.js dependencies..."
- name: Lint Next.js Code
# working-directory: ./nextjs-app
# run: npm run lint
run: echo "Linting Next.js app..."
- name: Run Tests for Next.js
# working-directory: ./nextjs-app
# run: npm test
run: echo "Running Next.js tests..."
- name: Build with Next.js
# run: ${{ steps.detect-package-manager.outputs.runner }} next build
# working-directory: ./nextjs-app
# run: npm run build
run: echo "Building Next.js app..."\
- name: Upload success marker
run: echo "nextjs-success" > success.txt
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: nextjs-build-success
path: success.txt