Skip to content

Bump pbkdf2 from 3.1.2 to 3.1.5 #1906

Bump pbkdf2 from 3.1.2 to 3.1.5

Bump pbkdf2 from 3.1.2 to 3.1.5 #1906

name: E2E Pipeline
on:
push:
branches: [development]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [development, staging, production, 'dependabot/**']
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
packages: write
checks: read
actions: read
jobs:
precheck:
uses: ./.github/workflows/precheck.yml
secrets: inherit
with:
is_pr: ${{ github.event_name == 'pull_request' }}
pr_number: ${{ github.event.pull_request.number }}
is_draft: ${{ github.event.pull_request.draft }}
pr_title: ${{ github.event.pull_request.title }}
pr_body: ${{ github.event.pull_request.body }}
head_sha: ${{ github.event.pull_request.head.sha }}
ref: ${{ github.ref }}
branch: ${{ github.ref_name }}
event_name: ${{ github.event_name }}
is_protected_push: ${{ github.ref_name == 'development' || github.ref_name == 'production' }}
sha: ${{ github.sha }}
build_cypress_image:
needs: precheck
if: needs.precheck.outputs.should_run == 'true'
uses: ./.github/workflows/ci_build_cypress_image.yml
build:
needs: precheck
if: needs.precheck.outputs.should_run == 'true'
uses: ./.github/workflows/ci_build.yml
e2e_cypress:
needs: [precheck, build_cypress_image]
if: needs.precheck.outputs.should_run == 'true'
uses: ./.github/workflows/ci_e2e_cypress.yml
e2e_puppeteer:
needs: precheck
if: needs.precheck.outputs.should_run == 'true'
uses: ./.github/workflows/ci_e2e_puppeteer.yml
check_translations:
needs: precheck
if: needs.precheck.outputs.should_run == 'true'
uses: ./.github/workflows/ci_check_translations.yml