This repository has been archived by the owner on Aug 6, 2024. It is now read-only.
Update semantic.css #1142
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
# Workflow trigger on any push and pull request. | ||
# For now this will only run on commenting /build-design-system | ||
name: Test, build and push | ||
on: | ||
# push: | ||
# branches: [ release, main ] | ||
# paths: | ||
# - "packages/design-system/**" | ||
issue_comment: | ||
types: [ created ] | ||
# Change the working directory for all the jobs in this workflow | ||
defaults: | ||
run: | ||
working-directory: packages/design-system | ||
# Job will run on a ubuntu instance | ||
jobs: | ||
build-design-system: | ||
uses: ./.github/workflows/Lib-build-design-system.yml | ||
Check failure on line 21 in .github/workflows/test-build-docker-image.yml GitHub Actions / .github/workflows/test-build-docker-image.ymlInvalid workflow file
|
||
name: build-design-system | ||
PushCheck: | ||
needs: [build-design-system] | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- run: echo "All ui-test matrices completed" |