Feat/objectarium pin unpin mapper #42
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: Test | |
on: | |
workflow_call: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
concurrency: | |
group: test-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-subql: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Setup node environment (for building) | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.16 | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Fetch dependencies | |
run: | | |
yarn --frozen-lockfile | |
- name: Generate code | |
run: | | |
yarn codegen | |
- name: Test project | |
run: | | |
yarn test |