|
@@ -96,7 +96,9 @@ jobs:
|
|
|
docker load --input joystream-node-docker-image.tar.gz
|
|
|
docker images
|
|
|
- name: Install packages and dependencies
|
|
|
- run: yarn install --frozen-lockfile
|
|
|
+ run: |
|
|
|
+ yarn install --frozen-lockfile
|
|
|
+ yarn workspace @joystream/types build
|
|
|
- name: Ensure tests are runnable
|
|
|
run: yarn workspace network-tests build
|
|
|
- name: Execute network tests
|
|
@@ -120,7 +122,9 @@ jobs:
|
|
|
docker load --input joystream-node-docker-image.tar.gz
|
|
|
docker images
|
|
|
- name: Install packages and dependencies
|
|
|
- run: yarn install --frozen-lockfile
|
|
|
+ run: |
|
|
|
+ yarn install --frozen-lockfile
|
|
|
+ yarn workspace @joystream/types build
|
|
|
- name: Ensure tests are runnable
|
|
|
run: yarn workspace network-tests build
|
|
|
- name: Execute network tests
|
|
@@ -144,7 +148,9 @@ jobs:
|
|
|
docker load --input joystream-node-docker-image.tar.gz
|
|
|
docker images
|
|
|
- name: Install packages and dependencies
|
|
|
- run: yarn install --frozen-lockfile
|
|
|
+ run: |
|
|
|
+ yarn install --frozen-lockfile
|
|
|
+ yarn workspace @joystream/types build
|
|
|
- name: Start chain
|
|
|
run: docker-compose up -d joystream-node
|
|
|
- name: Initialize the content directory
|
|
@@ -168,7 +174,9 @@ jobs:
|
|
|
docker load --input joystream-node-docker-image.tar.gz
|
|
|
docker images
|
|
|
- name: Install packages and dependencies
|
|
|
- run: yarn install --frozen-lockfile
|
|
|
+ run: |
|
|
|
+ yarn install --frozen-lockfile
|
|
|
+ yarn workspace @joystream/types build
|
|
|
- name: Ensure query-node builds
|
|
|
run: yarn workspace query-node-root build
|
|
|
- name: Ensure tests are runnable
|
|
@@ -196,7 +204,9 @@ jobs:
|
|
|
docker load --input joystream-node-docker-image.tar.gz
|
|
|
docker images
|
|
|
- name: Install packages and dependencies
|
|
|
- run: yarn install --frozen-lockfile
|
|
|
+ run: |
|
|
|
+ yarn install --frozen-lockfile
|
|
|
+ yarn workspace @joystream/types build
|
|
|
- name: Build storage node
|
|
|
run: yarn workspace storage-node build
|
|
|
- name: Start Services
|