Ci/fdp play rpc fix #462
Workflow file for this run
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
name: Tests | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- '**' | |
env: | |
BEE_VERSION: '1.13.0' | |
FAIROS_IMAGE: 'fairdatasociety/fairos-dfs:v0.10.0-rc6' | |
jobs: | |
nodejs: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Auth to Github Package Docker Registry | |
run: | | |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login https://docker.pkg.github.com -u ${GITHUB_ACTOR} --password-stdin | |
- name: Install fdp-play | |
run: npm install -g @fairdatasociety/fdp-play | |
- name: Run fdp-play | |
run: fdp-play start -d --bee-version $BEE_VERSION | |
- name: Run fdp-contracts | |
run: docker run -d -p 8545:9545 fairdatasociety/fdp-contracts-blockchain:latest | |
## Try getting the node modules from cache, if failed npm ci | |
- uses: actions/cache@v3 | |
id: cache-npm | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node-${{ matrix.node }}-${{ env.cache-name }}- | |
${{ runner.os }}-node-${{ matrix.node }}- | |
- name: Install npm deps | |
if: steps.cache-npm.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: Buy stamps | |
run: curl -s -XPOST http://localhost:1635/stamps/10000000/18 | |
- name: Wait to batch become usable | |
run: sleep 200 | |
- name: Run unit and integration tests for node | |
run: npm run test:node -- --detectOpenHandles | |
- name: Run migration tests for node | |
run: npm run test:migration -- --detectOpenHandles | |
fairos: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Auth to Github Package Docker Registry | |
run: | | |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login https://docker.pkg.github.com -u ${GITHUB_ACTOR} --password-stdin | |
- name: Install fdp-play | |
run: npm install -g @fairdatasociety/[email protected] | |
- name: Run fdp-play | |
run: fdp-play start -d --fairos --fairos-image $FAIROS_IMAGE --bee-version $BEE_VERSION | |
- name: Run fdp-contracts | |
run: docker run -d -p 8545:9545 fairdatasociety/fdp-contracts-blockchain:latest | |
## Try getting the node modules from cache, if failed npm ci | |
- uses: actions/cache@v3 | |
id: cache-npm | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node-${{ matrix.node }}-${{ env.cache-name }}- | |
${{ runner.os }}-node-${{ matrix.node }}- | |
- name: Install npm deps | |
if: steps.cache-npm.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: Buy stamps | |
run: curl -s -XPOST http://localhost:1635/stamps/10000000/18 | |
- name: Wait to batch become usable | |
run: sleep 200 | |
- name: Run unit and integration tests for FairOS | |
run: npm run test:fairos -- --detectOpenHandles | |
browser: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Auth to Github Package Docker Registry | |
run: | | |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login https://docker.pkg.github.com -u ${GITHUB_ACTOR} --password-stdin | |
- name: Install fdp-play | |
run: npm install -g @fairdatasociety/fdp-play | |
- name: Run fdp-play | |
run: fdp-play start -d --bee-version $BEE_VERSION | |
- name: Run fdp-contracts | |
run: docker run -d -p 8545:9545 fairdatasociety/fdp-contracts-blockchain:latest | |
## Try getting the node modules from cache, if failed npm ci | |
- uses: actions/cache@v3 | |
id: cache-npm | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node-${{ matrix.node }}-${{ env.cache-name }}- | |
${{ runner.os }}-node-${{ matrix.node }}- | |
- name: Install npm deps | |
if: steps.cache-npm.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: Buy stamps | |
run: curl -s -XPOST http://localhost:1635/stamps/10000000/18 | |
- name: Wait to batch become usable | |
run: sleep 200 | |
- name: Run browser tests | |
run: npm run test:browser |