Skip to content

Commit

Permalink
Update the pipelines to support the new tools for micro-frontends
Browse files Browse the repository at this point in the history
  • Loading branch information
bassoGeorge committed Jul 19, 2023
1 parent 3ca7738 commit 4fb1a31
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,15 @@ jobs:
- run: npm install -g grunt-cli
- run: gem install compass
- run: npm install --global yarn
- name: Build micro-frontends
- name: micro-frontends | install dependencies
working-directory: micro-frontends
run: yarn install --frozen-lock-file && yarn build
run: yarn install --frozen-lock-file
- name: micro-frontends | test
working-directory: micro-frontends
run: yarn test:ci
- name: micro-frontends | build
working-directory: micro-frontends
run: yarn build
- name: Package
run: cd ui && yarn cache clean && /bin/bash ./scripts/package.sh
- name: Set up QEMU
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/validate_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,14 @@ jobs:
- run: npm install -g grunt-cli
- run: gem install compass
- run: npm install --global yarn
- name: Build micro-frontends
- name: micro-frontends | install dependencies
working-directory: micro-frontends
run: yarn install --frozen-lock-file && yarn build
run: yarn install --frozen-lock-file
- name: micro-frontends | test
working-directory: micro-frontends
run: yarn test:ci
- name: micro-frontends | build
working-directory: micro-frontends
run: yarn build
- name: Package
run : cd ui && yarn cache clean && /bin/bash ./scripts/package.sh

0 comments on commit 4fb1a31

Please sign in to comment.