Skip to content

Commit

Permalink
chore: update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzkirstein committed Mar 14, 2024
1 parent 252de0e commit 6b1b9cb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

build:
name: Build
needs: lint
# needs: lint
runs-on: ubuntu-latest
timeout-minutes: 5

Expand All @@ -45,7 +45,7 @@ jobs:

types:
name: Types
needs: lint
# needs: lint
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
"clean": "rimraf src/_cjs src/_esm src/_types",
"docs:build": "typedoc",
"docs:watch": "typedoc --watch",
"generate:graphql": "graphql-codegen && npm run lint",
"install:docusaurus": "cd docs && npm install",
"lint": "eslint --ignore-path .gitignore --ext .ts",
"lint:fix": "eslint --ignore-path .gitignore --ext .ts --fix",
"mocha": "TS_NODE_PROJECT='./test/tsconfig.json' mocha --config=test/.mocharc.json --node-env=test --exit",
"prepublishOnly": "node scripts/prepublishOnly.js",
"start:docusaurus": "cd docs && npm run start",
"test": "npm run lint && npm run mocha -- test/**/*.test.ts test/*.test.ts",
"mocha": "TS_NODE_PROJECT='./test/tsconfig.json' mocha --config=test/.mocharc.json --node-env=test --exit",
"test:mocha": "npm run mocha -- test/**/*.test.ts",
"test:mocha:unit": "npm run mocha -- test/unit/**/*.test.ts",
"test:mocha:integration": "npm run mocha -- test/integration/**/*.test.ts",
"release": "release-it",
"prepublishOnly": "node scripts/prepublishOnly.js",
"lint": "eslint --ignore-path .gitignore --ext .ts && npm run type-check",
"generate:graphql": "graphql-codegen && npm run lint",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
Expand Down

0 comments on commit 6b1b9cb

Please sign in to comment.