-
Notifications
You must be signed in to change notification settings - Fork 10
47 lines (39 loc) · 892 Bytes
/
Copy pathapps-pool.yml
File metadata and controls
47 lines (39 loc) · 892 Bytes
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
name: apps / pool
on:
push:
branches: [main]
paths:
- 'apps/pool/**'
pull_request:
types: [opened, synchronize]
paths:
- 'apps/pool/**'
defaults:
run:
# change this if your nextjs app does not live at the root of the repo
working-directory: ./apps/pool
env:
CI: true
jobs:
ci:
name: continuous integration
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up pnpm
uses: pnpm/action-setup@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install
working-directory: .
- name: Build pool app
run: pnpm build-pool-app
working-directory: .