Skip to content

chore(deps): bump @types/node from 18.11.19 to 20.8.9 #273

chore(deps): bump @types/node from 18.11.19 to 20.8.9

chore(deps): bump @types/node from 18.11.19 to 20.8.9 #273

Workflow file for this run

name: Test and deploy to GitHub Pages
on: [push]
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 == 'dbsystel') }}
needs: [test, cypress, build-playground]
publish:
if: contains( github.ref, 'main')
uses: ./.github/workflows/02-npm-publish.yml
needs: [test, cypress]