mirror of
https://github.com/lingble/twenty.git
synced 2025-11-02 05:37:56 +00:00
Remove SQLite from twenty-website (#5142)
Removed SQLite from twenty-website --------- Co-authored-by: Ady Beraud <a.beraud96@gmail.com> Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
This commit is contained in:
14
.github/workflows/ci-website.yaml
vendored
14
.github/workflows/ci-website.yaml
vendored
@@ -17,6 +17,14 @@ concurrency:
|
||||
jobs:
|
||||
website-build:
|
||||
runs-on: ubuntu-latest
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres
|
||||
env:
|
||||
POSTGRES_PASSWORD: twenty
|
||||
POSTGRES_USER: twenty
|
||||
ports:
|
||||
- 5432:5432
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Setup Node.js
|
||||
@@ -25,5 +33,11 @@ jobs:
|
||||
node-version: "18"
|
||||
- name: Website / Install Dependencies
|
||||
run: yarn
|
||||
- name: Website / Run migrations
|
||||
run: npx nx database:migrate twenty-website
|
||||
env:
|
||||
DATABASE_PG_URL: postgres://twenty:twenty@localhost:5432/default
|
||||
- name: Website / Build Website
|
||||
run: npx nx build twenty-website
|
||||
env:
|
||||
DATABASE_PG_URL: postgres://twenty:twenty@localhost:5432/default
|
||||
Reference in New Issue
Block a user