Fix metadata increment values using actual values to increment by #3712
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: PR | |
on: | |
pull_request: | |
paths-ignore: | |
- '.github/workflows/**' | |
jobs: | |
pr: | |
name: pr | |
runs-on: ubuntu-latest | |
env: | |
SUBQL_ACCESS_TOKEN: ${{ secrets.SUBQL_ACCESS_TOKEN }} | |
SUBQL_ACCESS_TOKEN_TEST: ${{ secrets.SUBQL_ACCESS_TOKEN_TEST }} | |
SUBQL_ORG_TEST: ${{ secrets.SUBQL_ORG_TEST }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- run: yarn | |
- name: build | |
run: yarn build | |
- name: code-style check | |
run: yarn pretty-quick --check --pattern 'packages/*/src/**/*' --branch origin/main | |
- name: lint | |
run: yarn lint | |
- name: test | |
run: yarn test:docker | |