Skip to content

Commit

Permalink
Merge branch 'main' into indexer-impl
Browse files Browse the repository at this point in the history
  • Loading branch information
bajtos committed Sep 4, 2024
2 parents c53055f + f767629 commit 2ec7716
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
test-indexer:
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@
"indexer"
],
"scripts": {
"lint": "prettier --check . && standard && tsc -p .",
"lint": "prettier --check . && standard",
"lint:fix": "prettier --write . && standard --fix .",
"pretest": "npm run lint",
"test": "npm test --workspaces --if-present"
"test:types": "tsc -p .",
"test:unit": "npm test --workspaces --if-present",
"test": "npm run lint && npm run test:types && npm run test:unit"
},
"repository": {
"type": "git",
Expand All @@ -24,7 +25,7 @@
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^22.5.3",
"prettier": "^3.3.2",
"prettier": "^3.3.3",
"standard": "^17.1.0",
"typescript": "^5.5.4"
}
Expand Down

0 comments on commit 2ec7716

Please sign in to comment.