-
Notifications
You must be signed in to change notification settings - Fork 461
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add base line wab-ci * feat: add docker-compose to run postgres in a container env * feat: add template for pgpass file meant to help host machines authenticate in container pg * chore: install cypress plugins * chore: add graphql package at the root project * feat: add pm2 config for services that are only required for tests * fix: add special long timeout for component-ops spec * fix: add special data-binding spec * fix: hostless-cms flakiness when overwriding host config field * chore: set db-setup script execution permissions * chore: add verdaccio to docker-compose file * refactor: build and publish packages * feat: build packages before tests in same job * feat: build and publish packages to verdaccio * chore: enable playwrite tests always * test: trigger package build * fix: pull values for conditionals from the new changes job * fix: add auto confirm in lerna publish command * fix: jobs conditionals * fix: jobs conditionals * fix: jobs conditionals * fix: set outputs in changes job * chore: code used to trigger package build * fix: add yarn build in loader-bundle-env setup script * fix: upload playwright test results * fix: add step to authenticate in aws for playwright * chore: adjust trigger conditions GitOrigin-RevId: 56565d7ea73de4de87057f0a8d4fabe5e58affe9
- Loading branch information
1 parent
9637fe0
commit d0e0ea5
Showing
11 changed files
with
1,161 additions
and
23 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
services: | ||
db: | ||
image: postgres:15 | ||
restart: always | ||
environment: | ||
POSTGRES_PASSWORD: password | ||
healthcheck: | ||
test: ["CMD-SHELL", "pg_isready -U wab"] | ||
interval: 5s | ||
timeout: 10s | ||
retries: 5 | ||
ports: | ||
- 5432:5432 | ||
volumes: | ||
- ./platform/wab/tools/docker-dev/db-setup.bash:/docker-entrypoint-initdb.d/db-setup.sh | ||
|
||
verdaccio: | ||
image: verdaccio/verdaccio | ||
environment: | ||
VERDACCIO_PORT: "4873" | ||
ports: | ||
- 4873:4873 | ||
volumes: | ||
- ./verdaccio-config.yaml:/verdaccio/conf/config.yaml |
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
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
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
module.exports = { | ||
apps: [ | ||
{ | ||
name: "host-test", | ||
cwd: "../host-test", | ||
script: "yarn", | ||
args: ["start"], | ||
log_date_format: "HH:mm:ss.SSS", | ||
env: { | ||
PORT: "3011", | ||
}, | ||
interpreter: "none", | ||
}, | ||
], | ||
}; |
Empty file.
Oops, something went wrong.