added missing env in yaml files #192
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: Entity Developer Dashboard Build Workflow | |
| on: | |
| pull_request: | |
| branches: [develop, master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout into repo | |
| uses: actions/checkout@v2 | |
| with: | |
| persist-credentials: false | |
| - name: Setup NodeJS | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20.19 | |
| - name: Install packages | |
| run: yarn install --network-concurrency 1 | |
| - name: Build studio-api | |
| run: yarn build |