From 4d7739effb5a334890c62e0b5753ac87f9abeeef Mon Sep 17 00:00:00 2001 From: Bruno Tot Date: Sun, 1 Sep 2024 18:57:15 +0200 Subject: [PATCH] chore: update user.test.ts --- .github/workflows/test-app-node-express.yml | 9 +++++---- .github/workflows/test-lib-api-client.yml | 9 +++++---- .github/workflows/test-lib-commons.yml | 9 +++++---- .github/workflows/typedoc-generator.yml | 8 ++++---- 4 files changed, 19 insertions(+), 16 deletions(-) diff --git a/.github/workflows/test-app-node-express.yml b/.github/workflows/test-app-node-express.yml index 18ebe4e5..a88863f8 100644 --- a/.github/workflows/test-app-node-express.yml +++ b/.github/workflows/test-app-node-express.yml @@ -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 diff --git a/.github/workflows/test-lib-api-client.yml b/.github/workflows/test-lib-api-client.yml index cce63d62..c50999cb 100644 --- a/.github/workflows/test-lib-api-client.yml +++ b/.github/workflows/test-lib-api-client.yml @@ -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 diff --git a/.github/workflows/test-lib-commons.yml b/.github/workflows/test-lib-commons.yml index 8b74e278..821135e6 100644 --- a/.github/workflows/test-lib-commons.yml +++ b/.github/workflows/test-lib-commons.yml @@ -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 diff --git a/.github/workflows/typedoc-generator.yml b/.github/workflows/typedoc-generator.yml index e6c72aeb..8e7fee5f 100644 --- a/.github/workflows/typedoc-generator.yml +++ b/.github/workflows/typedoc-generator.yml @@ -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 }}