From a63bb51af0d354d231b08e960418b7ad165a3720 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 8 Feb 2024 11:29:33 +0100 Subject: [PATCH] move workflows --- .../.github => .github}/workflows/frontend.deploy.chromatic.yml | 1 + .../.github => .github}/workflows/frontend.test.build.code.yml | 2 ++ .../.github => .github}/workflows/frontend.test.build.docs.yml | 2 ++ .../workflows/frontend.test.build.storybook.yml | 2 ++ .../.github => .github}/workflows/frontend.test.lint.code.yml | 2 ++ .../.github => .github}/workflows/frontend.test.unit.code.yml | 2 ++ 6 files changed, 11 insertions(+) rename {frontend/.github => .github}/workflows/frontend.deploy.chromatic.yml (92%) rename {frontend/.github => .github}/workflows/frontend.test.build.code.yml (95%) rename {frontend/.github => .github}/workflows/frontend.test.build.docs.yml (95%) rename {frontend/.github => .github}/workflows/frontend.test.build.storybook.yml (95%) rename {frontend/.github => .github}/workflows/frontend.test.lint.code.yml (95%) rename {frontend/.github => .github}/workflows/frontend.test.unit.code.yml (95%) diff --git a/frontend/.github/workflows/frontend.deploy.chromatic.yml b/.github/workflows/frontend.deploy.chromatic.yml similarity index 92% rename from frontend/.github/workflows/frontend.deploy.chromatic.yml rename to .github/workflows/frontend.deploy.chromatic.yml index 0bb356969..ce2ef533f 100644 --- a/frontend/.github/workflows/frontend.deploy.chromatic.yml +++ b/.github/workflows/frontend.deploy.chromatic.yml @@ -9,6 +9,7 @@ jobs: runs-on: ubuntu-latest env: CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} + WORKING_DIRECTORY: ./frontend steps: - name: Checkout code uses: actions/checkout@v4 diff --git a/frontend/.github/workflows/frontend.test.build.code.yml b/.github/workflows/frontend.test.build.code.yml similarity index 95% rename from frontend/.github/workflows/frontend.test.build.code.yml rename to .github/workflows/frontend.test.build.code.yml index 13f1c161f..08df676d2 100644 --- a/frontend/.github/workflows/frontend.test.build.code.yml +++ b/.github/workflows/frontend.test.build.code.yml @@ -26,6 +26,8 @@ jobs: name: Build - Frontend needs: files-changed runs-on: ubuntu-latest + env: + WORKING_DIRECTORY: ./frontend steps: - name: Checkout code uses: actions/checkout@v4 diff --git a/frontend/.github/workflows/frontend.test.build.docs.yml b/.github/workflows/frontend.test.build.docs.yml similarity index 95% rename from frontend/.github/workflows/frontend.test.build.docs.yml rename to .github/workflows/frontend.test.build.docs.yml index 97ade5ba8..c37a8bf8f 100644 --- a/frontend/.github/workflows/frontend.test.build.docs.yml +++ b/.github/workflows/frontend.test.build.docs.yml @@ -26,6 +26,8 @@ jobs: name: Build Docs - Frontend needs: files-changed runs-on: ubuntu-latest + env: + WORKING_DIRECTORY: ./frontend steps: - name: Checkout code uses: actions/checkout@v4 diff --git a/frontend/.github/workflows/frontend.test.build.storybook.yml b/.github/workflows/frontend.test.build.storybook.yml similarity index 95% rename from frontend/.github/workflows/frontend.test.build.storybook.yml rename to .github/workflows/frontend.test.build.storybook.yml index 3ed779784..f96f38a4d 100644 --- a/frontend/.github/workflows/frontend.test.build.storybook.yml +++ b/.github/workflows/frontend.test.build.storybook.yml @@ -26,6 +26,8 @@ jobs: name: Build Storybook - Frontend needs: files-changed runs-on: ubuntu-latest + env: + WORKING_DIRECTORY: ./frontend steps: - name: Checkout code uses: actions/checkout@v4 diff --git a/frontend/.github/workflows/frontend.test.lint.code.yml b/.github/workflows/frontend.test.lint.code.yml similarity index 95% rename from frontend/.github/workflows/frontend.test.lint.code.yml rename to .github/workflows/frontend.test.lint.code.yml index 5891ab6a2..11799ae8c 100644 --- a/frontend/.github/workflows/frontend.test.lint.code.yml +++ b/.github/workflows/frontend.test.lint.code.yml @@ -26,6 +26,8 @@ jobs: name: Lint - Frontend needs: files-changed runs-on: ubuntu-latest + env: + WORKING_DIRECTORY: ./frontend steps: - name: Checkout code uses: actions/checkout@v4 diff --git a/frontend/.github/workflows/frontend.test.unit.code.yml b/.github/workflows/frontend.test.unit.code.yml similarity index 95% rename from frontend/.github/workflows/frontend.test.unit.code.yml rename to .github/workflows/frontend.test.unit.code.yml index 5a8f42711..171f10cbb 100644 --- a/frontend/.github/workflows/frontend.test.unit.code.yml +++ b/.github/workflows/frontend.test.unit.code.yml @@ -26,6 +26,8 @@ jobs: name: Unit - Frontend needs: files-changed runs-on: ubuntu-latest + env: + WORKING_DIRECTORY: ./frontend steps: - name: Checkout code uses: actions/checkout@v4