chore(deps): bump @types/node in the patch-dependencies group (#242) #576
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: Default Pipeline | |
on: | |
pull_request: | |
merge_group: | |
push: | |
branches: | |
- "main" | |
# We'd like to run the pipeline for dependabot PRs sequentially, and all other PRs in parallel, but still only one action run for each PR. | |
concurrency: | |
group: >- | |
${{ | |
github.actor == 'dependabot[bot]' && | |
'dependabot' || | |
format('{0}-{1}', github.workflow, github.ref) | |
}} | |
cancel-in-progress: >- | |
${{ | |
github.actor != 'dependabot[bot]' && | |
github.ref != 'refs/heads/main' | |
}} | |
jobs: | |
init: | |
uses: ./.github/workflows/00-init.yml | |
init-playground: | |
uses: ./.github/workflows/00-init-playground.yml | |
test: | |
uses: ./.github/workflows/01-npm-test.yml | |
needs: [init] | |
build: | |
uses: ./.github/workflows/01-build.yml | |
needs: [init] | |
build-playground: | |
uses: ./.github/workflows/01-build-playground.yml | |
needs: [init-playground] | |
cypress: | |
uses: ./.github/workflows/01-cypress.yml | |
needs: [build] | |
deploy: | |
uses: ./.github/workflows/02-deploy-gh-pages.yml | |
if: ${{ github.actor != 'dependabot[bot]' && (github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ui') }} | |
needs: [test, cypress, build-playground] | |
with: | |
release: false | |
preRelease: false | |
publish: | |
if: contains( github.ref, 'main') | |
uses: ./.github/workflows/02-npm-publish.yml | |
needs: [test, cypress] |