Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Update .github/workflows/relyance-sci.yml #95

Update .github/workflows/relyance-sci.yml

Update .github/workflows/relyance-sci.yml #95

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
# TODO On master/release, test all valid NodeJS versions
# https://github.com/thehubbleproject/hubble-contracts/issues/567
#
# strategy:
# matrix:
# node-version: [10.x, 12.x, 14.x, 16.x]
name: Node.js CI
on:
push:
branches: [ fork-master ]
pull_request:
branches: [ fork-master ]
env:
NODEJS_VERSION: 10.x
jobs:
lint-bench:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
-
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODEJS_VERSION }}
- run: npm ci
- run: npm run lint
- run: npm run solhint
- run: npm run generate
- run: npm run keyless:check -- --offline
- run: npm run bench
test-fast-client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
-
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODEJS_VERSION }}
- run: npm ci
- run: npm run generate
- run: npm run test -- test/fast/*
- run: npm run test -- test/client/*
test-slow-integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
-
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODEJS_VERSION }}
- run: npm ci
- run: npm run generate
- run: npm run test -- test/slow/*
- run: npm run test -- test/integration.test.ts
cloc:
needs: [lint-bench, test-fast-client, test-slow-integration]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: sudo apt install cloc -y
- run: cloc --exclude-dir test ./contracts