-
Notifications
You must be signed in to change notification settings - Fork 56
55 lines (46 loc) · 1.37 KB
/
codegen.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
name: Run Codegen
on:
pull_request:
types: [opened, reopened, review_requested, ready_for_review, synchronize]
workflow_dispatch:
inputs:
api_branch:
description: Api Branch
required: true
default: 'main'
jobs:
codegen:
if: github.event.pull_request.draft == false
name: Run Codegen
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Checkout API Git repository
uses: actions/checkout@v3
with:
repository: getlago/lago-api
ref: ${{ github.event.inputs.api_branch }}
path: api
token: ${{ secrets.GH_TOKEN }}
- name: Build API local image
run: |
docker build -t getlago/api:ci ./api
- name: Generate API RSA Key
run: |
echo "LAGO_RSA_PRIVATE_KEY=\"`openssl genrsa 2048 | base64`\"" >> .env
- name: Launch API
run: docker-compose -f ./api/docker-compose.ci.yml --env-file ./.env up -d api
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Node.js dependencies
run: yarn
- name: Run codegen
env:
CODEGEN_API: http://localhost:3000/graphql
run: |
yarn codegen
- name: Run Typescript
run: yarn tsc