Skip to content

refactor: try out new ubuntu version #325

refactor: try out new ubuntu version

refactor: try out new ubuntu version #325

Workflow file for this run

---
name: Default Pipeline
on:
pull_request:
push:
branches:
- "main"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ 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]