kotlin plugin 0.10.3 release #15
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: ethereum-wallet-kt-ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- "implementations/kt/**" | |
jobs: | |
ci: | |
name: ethereum-wallet-kt-ci | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Read .nvmrc | |
run: echo ::set-output name=NVMRC::$(cat .nvmrc) | |
id: nvm | |
- name: Setup Node.js | |
uses: actions/setup-node@master | |
with: | |
node-version: '${{ steps.nvm.outputs.NVMRC }}' | |
- name: Install dependencies | |
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline | |
working-directory: ./implementations/kt | |
- name: Start Ganache | |
run: yarn polywrap infra up --modules=eth-ens-ipfs | |
working-directory: ./implementations/kt | |
- name: Build and test | |
run: ./gradlew build | |
working-directory: ./implementations/kt | |
- name: Stop Ganache | |
run: yarn polywrap infra down --modules=eth-ens-ipfs | |
working-directory: ./implementations/kt |