Skip to content

Commit

Permalink
Merge pull request #272 from radixdlt/inbound-messages
Browse files Browse the repository at this point in the history
Refactor message router
  • Loading branch information
xstelea authored Nov 22, 2024
2 parents 6ca983d + 6186a3a commit 6b173ad
Show file tree
Hide file tree
Showing 49 changed files with 9,886 additions and 10,348 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ jobs:
run: npm ci

- name: Build extension
env:
VITE_GITHUB_REF_NAME: ${{ github.ref_name }}
env:
VITE_GITHUB_REF_NAME: ${{ github.ref_name }}
run: npm run build

- uses: RDXWorks-actions/upload-artifact@main
Expand All @@ -115,7 +115,7 @@ jobs:
run: npm run build
env:
VITE_DEV_TOOLS: true
VITE_GITHUB_REF_NAME: ${{ github.ref_name }}
VITE_GITHUB_REF_NAME: ${{ github.ref_name }}

- uses: RDXWorks-actions/upload-artifact@main
with:
Expand All @@ -126,7 +126,7 @@ jobs:
run: npm run lint

- name: Running unit tests
run: npm run test
run: npm run test:ci

- name: SonarCloud Scan
uses: RDXWorks-actions/sonarcloud-github-action@master
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx commitlint --edit && npm run lint && npm run test
npx commitlint --edit && npm run lint && npx vitest run
1 change: 1 addition & 0 deletions commitlint.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ module.exports = {
'style',
'test',
'major',
'code',
],
],
},
Expand Down
194 changes: 0 additions & 194 deletions jest.config.ts

This file was deleted.

Loading

0 comments on commit 6b173ad

Please sign in to comment.