Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

chore(deps-dev): bump postcss from 8.4.25 to 8.4.31 #318

chore(deps-dev): bump postcss from 8.4.25 to 8.4.31

chore(deps-dev): bump postcss from 8.4.25 to 8.4.31 #318

Workflow file for this run

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'
)