-
Notifications
You must be signed in to change notification settings - Fork 35
102 lines (88 loc) · 2.57 KB
/
ci.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: CI
on:
pull_request:
push:
branches:
- main
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
tests:
timeout-minutes: 3
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
name: Test on Node ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn test
integration-test:
timeout-minutes: 10
runs-on: ubuntu-latest
env:
LF_HOST: "http://localhost:3000"
LF_SECRET_KEY: "sk-lf-1234567890"
LF_PUBLIC_KEY: "pk-lf-1234567890"
steps:
- uses: actions/checkout@v3
- name: Clone langfuse server
run: |
git clone https://github.com/langfuse/langfuse.git ./langfuse-server
- name: Cache langfuse server dependencies
uses: actions/cache@v3
with:
path: ./langfuse-server/node_modules
key: |
langfuse-server-${{ hashFiles('./langfuse-server/package-lock.json') }}
langfuse-server-
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Run langfuse server
run: |
cd ./langfuse-server
echo "::group::Run langfuse server"
TELEMETRY_ENABLED=false docker-compose up -d
echo "::endgroup::"
echo "::group::Install dependencies (necessary to run seeder)"
npm ci
echo "::endgroup::"
echo "::group::Apply migrations and seed db"
cp .env.dev.example .env
npx --yes prisma migrate reset --force --skip-generate
echo "::endgroup::"
- run: yarn install
- run: yarn compile
- run: yarn test:integration
lint:
timeout-minutes: 3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn install
- run: yarn compile
- run: yarn lint
- run: yarn prettier:check
all-tests-passed:
# This allows us to have a branch protection rule for tests and deploys with matrix
runs-on: ubuntu-latest
needs: [tests, integration-test, lint]
if: always()
steps:
- name: Successful deploy
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
- name: Failing deploy
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1