Bump ip from 1.1.5 to 1.1.9 #85
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: Run Matchstick tests | |
on: | |
workflow_call: | |
pull_request: | |
env: | |
NODE_VERSION: "12.x" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out github repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Cache node modules | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: v16.13.1 | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Build subgraph.yaml for mainnet | |
run: yarn prep:mainnet | |
- name: Run matchstick tests | |
run: yarn test | |
# - name: Generate code coverage report | |
# run: yarn coverage |