Skip to content

Commit

Permalink
feat: Command and CI modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
falsy committed Jan 4, 2025
1 parent 8d6e3fb commit b9e60b6
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 13 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/client-a-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,5 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Run builds
run: yarn build

- name: Run tests
run: yarn test:a
3 changes: 0 additions & 3 deletions .github/workflows/client-b-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,5 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Run builds
run: yarn build

- name: Run tests
run: yarn test:b
3 changes: 0 additions & 3 deletions .github/workflows/domains-adapters-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,5 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Run builds
run: yarn build

- name: Run tests
run: yarn test
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@
"packages/*"
],
"scripts": {
"lint": "eslint packages/*/src --ext .ts",
"build:a": "yarn workspace client-a run build",
"build:b": "yarn workspace client-b run build",
"start:a": "yarn workspace client-a run start",
"start:b": "yarn workspace client-b run start",
"test": "yarn test:domains && yarn test:adapters && yarn test:a && yarn test:b",
"test:domains": "yarn workspace domains run test",
"test:adapters": "yarn workspace adapters run test",
"test:a": "yarn workspace client-a run test",
"test:b": "yarn workspace client-b run test"
"test:b": "yarn workspace client-b run test",
"lint": "eslint packages/*/src --ext .ts"
},
"devDependencies": {
"@types/jest": "^29.5.13",
Expand Down

0 comments on commit b9e60b6

Please sign in to comment.