Skip to content

Commit

Permalink
Add draft of GH workflow for basic CI test.
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Viénot <simon.vienot@icloud.com>
  • Loading branch information
svienot committed Aug 28, 2023
1 parent 5bf9b7f commit 9f939c5
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/tests.yaml
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

0 comments on commit 9f939c5

Please sign in to comment.