Skip to content

Commit

Permalink
test action
Browse files Browse the repository at this point in the history
  • Loading branch information
thelukewalton committed Dec 4, 2024
1 parent a1742a3 commit f68e80e
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @benken @mikecoomber @thelukewalton
* @ZebraDevs/front-end-devs
40 changes: 40 additions & 0 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: On Push Action

on: push

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Log Step 1
run: echo "This is step 1"

- name: Log Step 2
run: echo "This is step 2"

- name: Log Step 3
run: echo "This is step 3"

- name: Log Step 4
run: echo "This is step 4"

- name: Post coverage comment
if: always()
uses: actions/github-script@v6
with:
script: |
const steps = [
{ name: 'Checkout code', outcome: '${{ steps.checkout.outcome }}' },
{ name: 'Log Step 1', outcome: '${{ steps.step1.outcome }}' },
{ name: 'Log Step 2', outcome: '${{ steps.step2.outcome }}' },
{ name: 'Log Step 3', outcome: '${{ steps.step3.outcome }}' },
{ name: 'Log Step 4', outcome: '${{ steps.step4.outcome }}' }
];
steps.forEach(step => {
console.log(`Step: ${step.name}, Outcome: ${step.outcome}`);
});
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ An example app can be found in this repo under `/example`. This shows all compon

To view examples of all the components in the library, you can pull this repo and run either the example app or widgetbook instance.

You can also view the latest release at [Zeta](https://zeta-ds.web.app/) or the latest commits to main [here](https://zeta-flutter-main.web.app/).
You can also view the latest release at [Zeta](https://design.zebra.com/) or the latest commits to main [here](https://zeta-flutter-main.web.app/).

## Template

Expand Down

0 comments on commit f68e80e

Please sign in to comment.