Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): fix sanity check and run for PRs #38

Merged
merged 2 commits into from Jul 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -4,6 +4,10 @@ on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize

name: Sanity check

Expand Down Expand Up @@ -40,5 +44,5 @@ jobs:
- run: yarn lint
- run: docker-compose -f packages/accounts/docker-compose.yml up -d
- run: docker-compose -f packages/connector/docker-compose.yml up -d
- run: yarn test
- run: yarn build
- run: yarn test
3 changes: 3 additions & 0 deletions packages/connector/README.md
Expand Up @@ -8,6 +8,9 @@ From the monorepo root directory:
# Run database
docker-compose -f packages/connector/docker-compose.yml up -d

# Build accounts service
yarn workspace accounts build

# Run tests
yarn workspace connector test

Expand Down