Skip to content

Commit

Permalink
Merge pull request #2517 from modrinth/labrinth-add
Browse files Browse the repository at this point in the history
Add labrinth to monorepo
  • Loading branch information
Geometrically authored Oct 19, 2024
2 parents 486cd68 + 31d1516 commit 8c1c557
Show file tree
Hide file tree
Showing 744 changed files with 84,111 additions and 201 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/labrinth-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: docker-build

on:
push:
branches: [ "main" ]
paths:
- .github/workflows/labrinth-docker.yml
- 'apps/labrinth/**'
pull_request:
types: [ opened, synchronize ]
paths:
- .github/workflows/labrinth-docker.yml
- 'apps/labrinth/**'
merge_group:
types: [ checks_requested ]

jobs:
docker:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./apps/labrinth
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fetch docker metadata
id: docker_meta
uses: docker/metadata-action@v3
with:
images: ghcr.io/modrinth/labrinth
-
name: Login to GitHub Images
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: ./apps/labrinth
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
File renamed without changes.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml → .github/workflows/turbo-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,19 @@ jobs:

- name: Build
run: pnpm build
env:
SQLX_OFFLINE: true

- name: Lint
run: pnpm lint
env:
SQLX_OFFLINE: true

- name: Start docker compose
run: docker compose up -d

- name: Test
run: pnpm test
env:
SQLX_OFFLINE: true
DATABASE_URL: postgresql://labrinth:labrinth@localhost/postgres
Loading

0 comments on commit 8c1c557

Please sign in to comment.