Skip to content

use alternate ipfs pinning gh action #121

use alternate ipfs pinning gh action

use alternate ipfs pinning gh action #121

Workflow file for this run

name: build
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- run: yarn
- run: yarn build
- name: Pin to IPFS
id: upload
uses: aquiladev/ipfs-action@master
with:
service: pinata
pinName: Zodiac Roles App - TEST — ${ GITHUB_SHA }
path: "./packages/app/build"
verbose: true
pinataKey: ${{ secrets.PINATA_API_KEY }}
pinataSecret: ${{ secrets.PINATA_API_SECRET_KEY }}
- run: yarn test
- run: yarn coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: packages/evm/coverage/lcov.info