Skip to content

Bump tar from 6.1.15 to 6.2.1 #97

Bump tar from 6.1.15 to 6.2.1

Bump tar from 6.1.15 to 6.2.1 #97

Workflow file for this run

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('**/package-lock.json') }}
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: npm install
- name: Build subgraph.yaml for mainnet
run: npm run prep:mainnet
- name: Run matchstick tests
run: npm run test
# - name: Generate code coverage report
# run: yarn coverage