Skip to content

Bump openssl from 0.10.33 to 0.10.55 in /orchestrator #1678

Bump openssl from 0.10.33 to 0.10.55 in /orchestrator

Bump openssl from 0.10.33 to 0.10.55 in /orchestrator #1678

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
name: Solidity
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
node-build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [ 16.x ]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('solidity/package-lock.json') }}
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: cd solidity && npm ci
- run: cd solidity && npm run typechain
- run: cd solidity && npm run evm &
- run: cd solidity && npm run test