Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskigen committed Apr 3, 2023
1 parent c85c1a3 commit 0aa0b7d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 22 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ on:
env:
ESM_NAME: "openmrs-form-engine-lib"
JS_NAME: "openmrs-form-engine-lib.js"

jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -47,7 +46,7 @@ jobs:
server-token: ${{ secrets.TURBO_SERVER_TOKEN }}

- name: Run tests, lint and typechecking
run: yarn turbo verify
run: yarn verify

- name: Run build
run: yarn turbo build --color --concurrency=5
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"homepage": "https://github.com/openmrs/openmrs-form-engine-lib#readme",
"scripts": {
"lint": "eslint src --ext tsx --fix",
"verify": "turbo lint typescript",
"verify": "turbo lint typescript && yarn run test",
"prettier": "prettier --config prettier.config.js --write \"src/**/*.{ts,tsx}\"",
"typescript": "tsc",
"test": "jest --config ./jest.config.js --passWithNoTests",
Expand Down
21 changes: 2 additions & 19 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,13 @@
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["build"],
"outputs": [],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
},
"lint": {
"outputs": []
},
"typescript": {
"dependsOn": [],
"outputs": []
},
"extract-translations": {
"outputs": []
},
"dev": {
"cache": false,
"persistent": true
},
"verify": {
"outputs": []
}
"lint": {},
"typescript": {}
}
}

0 comments on commit 0aa0b7d

Please sign in to comment.