fix: improve getNestedField to fetch field value in objects containing arrays #1131
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: Build v1 | |
on: | |
push: | |
pull_request: | |
branches: | |
- "master" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- run: yarn install | |
- run: yarn deduplicate | |
- run: yarn build | |
- run: yarn lint | |
- run: yarn tsc -p tsconfig.json | |
- run: yarn test --ci --runInBand |