chore(deps): update node.js to v18.16.0 #243
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: pr | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
helm-quality: | |
uses: CloudNativeEntrepreneur/actions/.github/workflows/helm-quality.yaml@main | |
with: | |
helm_path: helm | |
preview-helm-quality: | |
uses: CloudNativeEntrepreneur/actions/.github/workflows/helm-quality.yaml@main | |
with: | |
helm_path: preview/helm | |
promote-helm-quality: | |
uses: CloudNativeEntrepreneur/actions/.github/workflows/helm-quality.yaml@main | |
with: | |
helm_path: promote/helm | |
node-quality: | |
uses: CloudNativeEntrepreneur/actions/.github/workflows/node-quality.yaml@main | |
preview: | |
needs: | |
- helm-quality | |
- preview-helm-quality | |
- promote-helm-quality | |
- node-quality | |
uses: CloudNativeEntrepreneur/actions/.github/workflows/gitops-preview.yaml@main | |
secrets: inherit | |
with: | |
container: true | |
environment_repository: CloudNativeEntrepreneur/example-preview-envs | |
project: example-preview-envs | |
comment: | | |
Your preview environment has been published! :rocket: | |
It may take a few minutes to spin up. | |
You can view the Preview contents with `kubectl`: | |
```bash | |
kubectl get postgresqls -n ${{ github.event.repository.name }}-pr-${{ github.event.pull_request.number }}-preview | |
kubectl get databases.databases.schemahero.io -n ${{ github.event.repository.name }}-pr-${{ github.event.pull_request.number }}-preview | |
kubectl get tables.schemas.schemahero.io -n ${{ github.event.repository.name }}-pr-${{ github.event.pull_request.number }}-preview | |
``` |