Skip to content

build: upgrade all packages to the latest non-breaking versions #75

build: upgrade all packages to the latest non-breaking versions

build: upgrade all packages to the latest non-breaking versions #75

Workflow file for this run

name: "Continuous Deployment"
on:
push:
branches:
- "main"
jobs:
cd:
runs-on: "ubuntu-18.04"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v2"
- name: "Install Node.js"
uses: "actions/setup-node@v2"
with:
cache: "yarn"
node-version: "16"
- name: "Install dependencies"
run: "yarn install --immutable"
- name: "Lint AssemblyScript code"
run: "yarn run lint"
- name: "Generate subgraph manifest"
run: "yarn run prepare:matic"
- name: "Generate AssemblyScript types"
run: "yarn run codegen"
- name: "Deploy to Matic"
run: "yarn run deploy:matic --access-token ${{ secrets.THE_GRAPH_TOKEN }}"