temp bug fix for group info being overwritten when loading a flow fro… #221
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: Test and build application | |
| on: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| NX_NON_NATIVE_HASHER: true | |
| VITE_API_URL: / | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| deployments: write | |
| name: Test and build application | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: 20 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Test application | |
| run: npm run test | |
| - name: Build application | |
| run: npm run build |