-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (66 loc) · 2.39 KB
/
nextjs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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-build-success" > nextjs-build-success.txt
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: nextjs-build-success
path: nextjs-build-success.txt