-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from oasisprotocol/matevz/add-sapphire-localne…
…t-ci ci: Add sapphire-localnet for backend tests
- Loading branch information
Showing
1 changed file
with
101 additions
and
2 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 |
---|---|---|
|
@@ -9,8 +9,107 @@ on: | |
- main | ||
|
||
jobs: | ||
test-backend-frontend: | ||
name: test-backend-frontend | ||
test-backend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 8 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
shell: bash | ||
run: | | ||
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | ||
- uses: actions/cache@v4 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- name: Install dependencies | ||
working-directory: backend | ||
run: pnpm install | ||
|
||
- name: Build backend | ||
working-directory: backend | ||
run: pnpm build | ||
|
||
- name: Test backend | ||
working-directory: backend | ||
run: pnpm test | ||
|
||
test-backend-sapphire: | ||
runs-on: ubuntu-latest | ||
services: | ||
sapphire-localnet-ci: | ||
image: ghcr.io/oasisprotocol/sapphire-localnet:latest | ||
ports: | ||
- 8545:8545 | ||
- 8546:8546 | ||
env: | ||
OASIS_DEPOSIT: /oasis-deposit -test-mnemonic -n 5 | ||
options: >- | ||
--rm | ||
--health-cmd="/oasis-node debug control wait-ready -a unix:/serverdir/node/net-runner/network/client-0/internal.sock" | ||
--health-start-period=90s | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 8 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
shell: bash | ||
run: | | ||
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | ||
- uses: actions/cache@v4 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- name: Install dependencies | ||
working-directory: backend | ||
run: pnpm install | ||
|
||
- name: Build backend | ||
working-directory: backend | ||
run: pnpm build | ||
|
||
- name: Test backend | ||
working-directory: backend | ||
run: pnpm test -- --network sapphire-localnet | ||
|
||
test-frontend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
|