test: add templateId create/update tests and update plain client JSDo… #1055
Workflow file for this run
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: CI | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: ['**'] | |
| pull_request: | |
| branches: ['**'] | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build.yaml | |
| check: | |
| needs: build | |
| uses: ./.github/workflows/check.yaml | |
| test-demo-projects: | |
| needs: [build, check] | |
| uses: ./.github/workflows/test-demo-projects.yaml | |
| secrets: inherit | |
| test-integration: | |
| needs: [build, check, test-demo-projects] | |
| uses: ./.github/workflows/test-integration.yaml | |
| secrets: inherit | |
| release: | |
| if: github.event_name == 'push' && contains(fromJSON('["refs/heads/master", "refs/heads/beta", "refs/heads/canary", "refs/heads/dev", "refs/heads/new-beta"]'), github.ref) | |
| needs: [build, check, test-demo-projects, test-integration] | |
| permissions: | |
| contents: write | |
| id-token: write | |
| actions: read | |
| uses: ./.github/workflows/release.yaml | |
| secrets: | |
| VAULT_URL: ${{ secrets.VAULT_URL }} |