chore(deps): bump typedoc-plugin-markdown from 4.8.1 to 4.9.0 #419
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
# Work around variables not being passed to forks | |
NODE_PROVIDER_MATIC_RPC_URL: https://polygon-mainnet.g.alchemy.com/v2/gZpMQ4LyPEcnZVRE5ueUhcFFDBQinsV8 | |
GRAPH_API_KEY: 0e7dd738749485cb3dceaeaa33ce3eb8 | |
FORKING_BLOCK_NUMBER: 71229929 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install packages | |
run: yarn | |
- name: Compile code | |
run: yarn build:clean | |
- name: Format | |
run: yarn format:check | |
- name: Lint | |
run: yarn lint | |
- name: Test | |
run: yarn test |