This repository was archived by the owner on Jan 22, 2025. It is now read-only.
Commit ed25519 1 parent a62c388 commit ed25519 Copy full SHA for ed25519
File tree 2 files changed +18
-0
lines changed
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 55
55
if : steps.cache-test-validator.outputs.cache-hit != 'true'
56
56
run : scripts/setup-test-validator.sh
57
57
58
+ - name : Start Test Validator
59
+ id : test-validator
60
+ run : |
61
+ ./scripts/start-shared-test-validator.sh &
62
+ echo "TEST_VALIDATOR_PID=$!" >> "$GITHUB_OUTPUT"
63
+
58
64
- name : Publish NPM
59
65
run : |
60
66
pnpm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
63
69
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
64
70
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
65
71
72
+ - name : Stop Test Validator
73
+ run : kill ${{ steps.test-validator.outputs.TEST_VALIDATOR_PID}}
74
+
66
75
- name : Deploy Github Page
67
76
uses : peaceiris/actions-gh-pages@v3
68
77
with :
Original file line number Diff line number Diff line change 66
66
if : steps.cache-test-validator.outputs.cache-hit != 'true'
67
67
run : scripts/setup-test-validator.sh
68
68
69
+ - name : Start Test Validator
70
+ id : test-validator
71
+ run : |
72
+ ./scripts/start-shared-test-validator.sh &
73
+ echo "TEST_VALIDATOR_PID=$!" >> "$GITHUB_OUTPUT"
74
+
69
75
- name : Build & Test
70
76
run : pnpm build --concurrency=100%
71
77
78
+ - name : Stop Test Validator
79
+ run : kill ${{ steps.test-validator.outputs.TEST_VALIDATOR_PID}}
80
+
72
81
- name : Upload Experimental library build artifacts
73
82
if : matrix.node == 'current'
74
83
uses : actions/upload-artifact@v3
You can’t perform that action at this time.
0 commit comments