Skip to content

Commit

Permalink
start mint?
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Nov 29, 2023
1 parent 0f46b99 commit dc507b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/nutshell-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
- name: Build and start services
env:
MINT_LIGHTNING_BACKEND: FakeWallet
MINT_LISTEN_HOST: 0.0.0.0
MINT_LISTEN_PORT: 3338
MINT_PRIVATE_KEY: TEST_PRIVATE_KEY
run: |
docker-compose up --build -d
- name: Check if services are running
Expand All @@ -36,4 +39,4 @@ jobs:
cache: 'npm'
- run: npm ci
- run: npm run compile
- run: npm test
- run: npm test-integration
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
},
"scripts": {
"compile": "rm -rf dist/lib && tsc && tsc --build tsconfig.es5.json",
"test": "jest --coverage",
"test": "jest --coverage --testPathIgnorePatterns ./test/integration.test.ts",
"test-integration": "jest --coverage --testPathPattern ./test/integration.test.ts",
"dev": "tsc --watch",
"lint": "eslint --ext .js,.ts . --fix",
"format": "prettier --write .",
Expand Down

0 comments on commit dc507b6

Please sign in to comment.