We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d35952 commit c006e36Copy full SHA for c006e36
1 file changed
.github/workflows/tests.yml
@@ -50,3 +50,24 @@ jobs:
50
run: |
51
cd kms/auth-eth
52
npm test
53
+
54
+ kms-e2e-tests:
55
+ name: KMS E2E tests
56
+ runs-on: ubuntu-latest
57
+ steps:
58
+ - uses: actions/checkout@v4
59
60
+ - name: Install Rust
61
+ uses: dtolnay/rust-toolchain@master
62
+ with:
63
+ toolchain: 1.92.0
64
65
+ - name: Setup Node.js
66
+ uses: actions/setup-node@v4
67
68
+ node-version: '18'
69
+ cache: 'npm'
70
+ cache-dependency-path: kms/auth-eth/package-lock.json
71
72
+ - name: Run KMS E2E tests
73
+ run: bash kms/e2e/run-e2e.sh
0 commit comments