This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
Bump docker/login-action from 1 to 3 #85
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
# 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 |