-
Notifications
You must be signed in to change notification settings - Fork 184
48 lines (42 loc) · 1.13 KB
/
test-pnpm-build.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
name: Test pnpm build
on:
push:
branches:
- main
paths:
- "frontend/**"
- ".github/workflows/test-pnpm-build.yml"
pull_request:
branches:
- main
paths:
- "frontend/**"
- ".github/workflows/test-pnpm-build.yml"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "22"
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: "latest"
- name: Install dependencies
run: pnpm install
working-directory: ./frontend
- name: Build project
env:
NEXT_PUBLIC_API_URL: http://localhost:8000
NEXT_PUBLIC_APP_ENV: development
NEXT_PUBLIC_APP_URL: http://localhost:3000
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: "secret-clerk-publishable-key"
NEXT_PUBLIC_DISABLE_AUTH: "true"
NEXT_SERVER_API_URL: http://localhost:8000
NODE_ENV: development
run: pnpm build
working-directory: ./frontend