Skip to content

build(deps-dev): bump postcss-preset-env from 9.5.13 to 9.5.14 (#857) #586

build(deps-dev): bump postcss-preset-env from 9.5.13 to 9.5.14 (#857)

build(deps-dev): bump postcss-preset-env from 9.5.13 to 9.5.14 (#857) #586

Workflow file for this run

# This is workflow runs on push
#
name: Release
# Controls when the action will run.
on:
# Trigger workflow for pull requests.
push:
branches: [main, next, beta, alpha]
concurrency:
group: ${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
lint-code:
name: '▶️ actions'
uses: ./.github/workflows/lint-code.yml
# Test is currently covered by test-code
# build-code:
# name: '▶️ actions'
# needs: [lint-code]
# uses: ./.github/workflows/build-code.yml
test-code:
name: '▶️ actions'
needs: [lint-code]
uses: ./.github/workflows/test-code.yml
codeql:
name: '▶️ actions'
needs: [lint-code]
uses: ./.github/workflows/codeql.yml
sonarqube:
name: '▶️ actions'
needs: [lint-code]
uses: ./.github/workflows/sonarqube.yml
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
# visual-test:
# name: '▶️ actions'
# # execute after successful code validation to save unnecessary screenshots costs
# needs: [lint-code, build-code, test-code, codeql, sonarqube]
# if: github.event.pull_request.draft == false # do not run on draft PR
# uses: ./.github/workflows/visual-test.yml
# secrets:
# PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
release:
name: '▶️ actions'
needs: [test-code, codeql, sonarqube]
uses: ./.github/workflows/release.yml
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
publish:
name: '▶️ actions'
needs: [release]
uses: ./.github/workflows/publish.yml
secrets:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ID: ${{ secrets.CLOUDFLARE_ID }}