Skip to content

Commit

Permalink
Merge branch 'feat/deno-runtime' into deno/modify-accessors
Browse files Browse the repository at this point in the history
  • Loading branch information
d-gubert authored Dec 1, 2023
2 parents 8b63b7b + 4110cc4 commit 4a62fca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
tar xzf /tmp/workspace.tar.gz .
- name: Test TypeScript Code
run: npm run unit-tests
run: npm run test

build:
runs-on: ubuntu-latest
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"typings": "index",
"scripts": {
"start": "gulp",
"test": "npm run unit-tests",
"test": "concurrently \"npm:test:node\" \"npm:test:deno\"",
"lint:eslint": "eslint .",
"lint:deno": "deno lint deno-runtime/",
"lint": "concurrently \"npm:lint:eslint\" \"npm:lint:deno\"",
Expand All @@ -16,7 +16,8 @@
"go-publish": "gulp publish",
"go-publish-beta": "gulp publish-beta",
"go-publish-alpha": "gulp publish-alpha",
"unit-tests": "NODE_ENV=test ts-node --transpileOnly ./tests/runner.ts",
"test:node": "NODE_ENV=test ts-node ./tests/runner.ts",
"test:deno": "cd deno-runtime && deno test --no-check --allow-read",
"gen-doc": "typedoc"
},
"repository": {
Expand Down Expand Up @@ -93,7 +94,7 @@
"dependencies": {
"adm-zip": "^0.5.9",
"cryptiles": "^4.1.3",
"deno-bin": "^1.37.1",
"deno-bin": "1.37.1",
"jose": "^4.11.1",
"jsonrpc-lite": "^2.2.0",
"lodash.clonedeep": "^4.5.0",
Expand Down Expand Up @@ -123,7 +124,7 @@
"pre-push": [
"lint",
"compile",
"unit-tests"
"test"
],
"volta": {
"node": "14.21.3"
Expand Down

0 comments on commit 4a62fca

Please sign in to comment.