-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
255 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,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@v4 | ||
|
||
- name: Checkout API Git repository | ||
uses: actions/checkout@v4 | ||
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 ./ci/docker-compose.ci.yml --env-file ./.env up -d api | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- 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 | ||
# 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@v4 | ||
|
||
# - name: Checkout API Git repository | ||
# uses: actions/checkout@v4 | ||
# 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 ./ci/docker-compose.ci.yml --env-file ./.env up -d api | ||
|
||
# - name: Set up Node.js | ||
# uses: actions/setup-node@v4 | ||
# with: | ||
# node-version: 20 | ||
|
||
# - 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
name: "Lago Internal" | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
lago-internal: | ||
name: Lago Internal | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Repository Dispatch | ||
uses: peter-evans/repository-dispatch@v2 | ||
with: | ||
token: ${{ secrets.GH_TOKEN}} | ||
repository: getlago/lago-deploy | ||
event-type: front-push-main | ||
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' | ||
# name: "Lago Internal" | ||
# on: | ||
# push: | ||
# branches: | ||
# - main | ||
# jobs: | ||
# lago-internal: | ||
# name: Lago Internal | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Repository Dispatch | ||
# uses: peter-evans/repository-dispatch@v2 | ||
# with: | ||
# token: ${{ secrets.GH_TOKEN}} | ||
# repository: getlago/lago-deploy | ||
# event-type: front-push-main | ||
# client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
name: Lint | ||
# name: Lint | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened, review_requested, ready_for_review, synchronize] | ||
# on: | ||
# pull_request: | ||
# types: [opened, reopened, review_requested, ready_for_review, synchronize] | ||
|
||
jobs: | ||
run-linters: | ||
name: Run linters | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v4 | ||
# jobs: | ||
# run-linters: | ||
# name: Run linters | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Check out Git repository | ||
# uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
# - name: Set up Node.js | ||
# uses: actions/setup-node@v4 | ||
# with: | ||
# node-version: 20 | ||
|
||
# ESLint and Prettier must be in `package.json` | ||
- name: Install Node.js dependencies | ||
run: yarn | ||
# # ESLint and Prettier must be in `package.json` | ||
# - name: Install Node.js dependencies | ||
# run: yarn | ||
|
||
- name: Run linters | ||
uses: wearerequired/lint-action@v2 | ||
with: | ||
eslint: true | ||
eslint_extensions: js,ts,tsx | ||
continue_on_error: false | ||
prettier: true | ||
prettier_extensions: ts,tsx,svg,html | ||
# - name: Run linters | ||
# uses: wearerequired/lint-action@v2 | ||
# with: | ||
# eslint: true | ||
# eslint_extensions: js,ts,tsx | ||
# continue_on_error: false | ||
# prettier: true | ||
# prettier_extensions: ts,tsx,svg,html | ||
|
||
- name: Run Translation Check | ||
run: | | ||
yarn translations:inspect | ||
# - name: Run Translation Check | ||
# run: | | ||
# yarn translations:inspect |
Oops, something went wrong.