[TM-1676] Implement user creation BE #298
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
name: Pull Request | |
env: | |
HUSKY: 0 | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
on: | |
pull_request: | |
permissions: | |
actions: read | |
contents: read | |
# Note: we're disabling usage of NX Cloud. This does mean that all tests run every time, even | |
# if none of their dependent code changes, but it also means we don't have to pay for NX Cloud | |
# or go to NX Cloud to see test failures (they show on Github instead). If we get to a point | |
# where the full test suite is taking too long to run, we can explore paying for NX Cloud, but | |
# for now, this is fine. | |
jobs: | |
build-lint-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: KengoTODA/actions-setup-docker-compose@v1 | |
with: | |
version: "2.29.1" | |
# Cache node_modules | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "npm" | |
- run: npm ci --legacy-peer-deps | |
- run: npx nx run-many -t lint build --no-cloud | |
- name: Bring up DB Docker Container | |
run: | | |
docker-compose up -d | |
./docker/test-connection.sh | |
# First run just the small database test to get the test database synced to the current schema | |
# in a clean way. For some reason, the `run-many` is necessary here. If this line simply uses | |
# nx test database, the connection to the DB gets cut off before the sync is complete. | |
- name: Sync DB Schema | |
run: npx nx test database --no-cloud --skip-nx-cache | |
# Run the UDB service tests in isolation because they require clearing out DB tables and ensuring | |
# they know exactly what's in them, which is not conducive to parallel runs with other test | |
# suites. | |
- name: Unified DB Test | |
run: npx nx test unified-database-service --no-cloud --coverage | |
# Run the UDB service tests in isolation because they require clearing out DB tables and ensuring | |
# they know exactly what's in them, which is not conducive to parallel runs with other test | |
# suites. | |
- name: Entity Service Test | |
run: npx nx test entity-service --no-cloud --coverage --runInBand | |
- name: Test all | |
run: npx nx run-many -t test --no-cloud --coverage --passWithNoTests --exclude unified-database-service database entity-service |