-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add draft of GH workflow for basic CI test.
Signed-off-by: Simon Viénot <simon.vienot@icloud.com>
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Tests | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
|
||
jobs: | ||
|
||
test-server: | ||
|
||
name: Basic server non-regression | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Use Node.js TLS 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Provide environment variables | ||
run: cp environments/.en.dev.hedera environments/.env | ||
|
||
- name: Start Hedera Local Node | ||
run: npm run local-node:start | ||
|
||
- name: Start hedera-sourcify server | ||
run: npm run server:start | ||
|
||
- name: Start test | ||
run: npm run test:hedera |