Skip to content

Commit

Permalink
Merge pull request #10 from brunotot/hotfix-test-2
Browse files Browse the repository at this point in the history
chore: update test
  • Loading branch information
brunotot authored Sep 1, 2024
2 parents cdbba7b + 31c7c7b commit 8866c18
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 16 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test-app-node-express.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: 🛒 Checkout Repository
uses: actions/checkout@v4

- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
app-node-express:
- 'packages/app-node-express/**'
- name: 🛒 Checkout Repository
if: steps.changes.outputs.app-node-express == 'true'
uses: actions/checkout@v4

- name: 🤳 Install
if: steps.changes.outputs.app-node-express == 'true'
uses: ./.github/composite-actions/install
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/test-app-vite-react.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: 🛒 Checkout Repository
uses: actions/checkout@v4

- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
app-vite-react:
- 'packages/app-vite-react/**'
- name: 🛒 Checkout Repository
if: steps.changes.outputs.app-vite-react == 'true'
uses: actions/checkout@v4

- name: 🤳 Install
if: steps.changes.outputs.app-vite-react == 'true'
uses: ./.github/composite-actions/install
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/test-lib-api-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: 🛒 Checkout Repository
uses: actions/checkout@v4

- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
lib-api-client:
- 'packages/lib-api-client/**'
- name: 🛒 Checkout Repository
if: steps.changes.outputs.lib-api-client == 'true'
uses: actions/checkout@v4

- name: 🤳 Install
if: steps.changes.outputs.lib-api-client == 'true'
uses: ./.github/composite-actions/install
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/test-lib-commons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: 🛒 Checkout Repository
uses: actions/checkout@v4

- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
lib-commons:
- 'packages/lib-commons/**'
- name: 🛒 Checkout Repository
if: steps.changes.outputs.lib-commons == 'true'
uses: actions/checkout@v4

- name: 🤳 Install
if: steps.changes.outputs.lib-commons == 'true'
uses: ./.github/composite-actions/install
Expand Down

0 comments on commit 8866c18

Please sign in to comment.