Skip to content

Commit

Permalink
chore: update user.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
brunotot committed Sep 1, 2024
1 parent 0faff31 commit 4d7739e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 16 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test-app-node-express.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,21 @@ jobs:
runs-on: ubuntu-latest

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

- uses: dorny/paths-filter@v3
- name: ⚙️ Configure paths filter environment variable
uses: dorny/paths-filter@v3
id: changes
with:
filters: |
app-node-express:
- 'packages/app-node-express/**'
- name: 🤳 Install
- name: 🛠 Setup Git, PNPM and Node.js
if: steps.changes.outputs.app-node-express == 'true'
uses: ./.github/composite-actions/install

- name: 🚀 Run app-node-express Tests
- name: 🚀 Run test
if: steps.changes.outputs.app-node-express == 'true'
run: pnpm run app-node-express:test
9 changes: 5 additions & 4 deletions .github/workflows/test-lib-api-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,21 @@ jobs:
runs-on: ubuntu-latest

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

- uses: dorny/paths-filter@v3
- name: ⚙️ Configure paths filter environment variable
uses: dorny/paths-filter@v3
id: changes
with:
filters: |
lib-api-client:
- 'packages/lib-api-client/**'
- name: 🤳 Install
- name: 🛠 Setup Git, PNPM and Node.js
if: steps.changes.outputs.lib-api-client == 'true'
uses: ./.github/composite-actions/install

- name: 🚀 Run lib-api-client Tests
- name: 🚀 Run test
if: steps.changes.outputs.lib-api-client == 'true'
run: pnpm run lib-api-client:test
9 changes: 5 additions & 4 deletions .github/workflows/test-lib-commons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,21 @@ jobs:
runs-on: ubuntu-latest

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

- uses: dorny/paths-filter@v3
- name: ⚙️ Configure paths filter environment variable
uses: dorny/paths-filter@v3
id: changes
with:
filters: |
lib-commons:
- 'packages/lib-commons/**'
- name: 🤳 Install
- name: 🛠 Setup Git, PNPM and Node.js
if: steps.changes.outputs.lib-commons == 'true'
uses: ./.github/composite-actions/install

- name: 🚀 Run lib-commons Tests
- name: 🚀 Run test
if: steps.changes.outputs.lib-commons == 'true'
run: pnpm run lib-commons:test
8 changes: 4 additions & 4 deletions .github/workflows/typedoc-generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ jobs:
runs-on: ubuntu-latest

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

- name: 🤳 Install
- name: 🛠 Setup Git, PNPM and Node.js
uses: ./.github/composite-actions/install

- name: 🔥 Generate documentation
- name: ⚙️ Build Typedoc assets
run: pnpm run writeTypedoc

- name: 🚢 Deploy to GitHub Pages
- name: 🚢 Deploy Typedoc assets to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 4d7739e

Please sign in to comment.