This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
chore(deps-dev): bump undici from 5.13.0 to 5.26.3 #316
Workflow file for this run
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: CI/CD | |
on: | |
push: | |
paths-ignore: | |
- .vscode/ | |
- .gitignore | |
- .env.example | |
- .envrc | |
- README.md | |
- CHANGELOG.md | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
# Runs Security Analysis, Linting, Formatting, Unit and Integration every activity of type [push] | |
call-quick-checks: | |
uses: ./.github/workflows/tests-quick-checks.yml | |
if: github.actor != 'dependabot[bot]' | |
# Runs E2E when github.ref (the branch or tag ref that triggered the workflow run is main) | |
# Also, runs when activity type is [pull_request] matching the specified event types. | |
call-slow-checks: | |
uses: ./.github/workflows/tests-slow-checks.yml | |
if: >- | |
github.actor != 'dependabot[bot]' | |
&& ( | |
github.ref == 'refs/heads/main' | |
|| github.event_name == 'pull_request' | |
) |