fluence-js/.github/workflows/js_sdk_ci.yml

42 lines
1.2 KiB
YAML
Raw Normal View History

name: Run tests
2020-12-22 08:08:44 +00:00
defaults:
run:
working-directory: .
2020-12-22 08:08:44 +00:00
on:
push:
2020-12-22 08:08:44 +00:00
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2022-02-04 19:37:00 +00:00
node-version: [16.x, 17.x]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-v1-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-v1-node-${{ matrix.node-version }}
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Run container with Fluence node
2021-08-27 17:02:55 +00:00
run: |
docker pull fluencelabs/fluence
docker run -d --rm -e RUST_LOG="info" -p 1210:1210 -p 4310:4310 fluencelabs/fluence -t 1210 -w 4310 -k gKdiCSUr1TFGFEgu2t8Ch1XEUsrN5A2UfBLjSZvfci9SPR3NvZpACfcpPGC3eY4zma1pk7UvYv5zb1VjvPHwCjj --local --aqua-pool-size 2
- run: npm install
- run: npm run test:all
env:
CI: true