docs(README): fix links #14
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: Build and Test Node | |
on: | |
pull_request: | |
branches: | |
- develop | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install ganache | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y npm | |
sudo npm i -g ganache-cli | |
ganache-cli -m "candy maple cake sugar pudding cream honey rich smooth crumble sweet treat" --port 8544 --accounts 20 --networkId=9 --gasLimit=10000000 > /dev/null & | |
- name: Setup JDK/Gradle | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'corretto' | |
java-version: '15' | |
cache: 'gradle' | |
- name: Build | |
run: ./gradlew build --no-daemon --info |