Skip to content

chore(deps-dev): bump postcss from 8.4.23 to 8.4.31 (#1134) #1448

chore(deps-dev): bump postcss from 8.4.23 to 8.4.31 (#1134)

chore(deps-dev): bump postcss from 8.4.23 to 8.4.31 (#1134) #1448

Workflow file for this run

name: On Push
on:
push:
branches: main
env:
CI: true
NX_CLOUD_DISTRIBUTED_EXECUTION: true
jobs:
start:
uses: ./.github/workflows/start-nx-cloud.yml
agent:
uses: ./.github/workflows/start-agents.yml
test:
needs: start
uses: ./.github/workflows/test.yml
secrets:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
release:
needs: test
uses: ./.github/workflows/release-package.yml
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
stop:
if: ${{ always() }}
needs: release
uses: ./.github/workflows/stop-nx-cloud.yml
report:
if: ${{ always() }}
needs: [stop, test, start, release]
runs-on: ubuntu-latest
steps:
- name: on error
if: ${{ needs.start.result != 'success' || needs.test.result != 'success' || needs.release.result != 'success' }}
run: exit 1