From 7fa20192b9ff1cb481ce3e133d53bc84da2567d3 Mon Sep 17 00:00:00 2001 From: Johannes Obermair Date: Tue, 3 Dec 2024 16:44:05 +0100 Subject: [PATCH] Test --- .github/workflows/lint-create-app.yml | 11 ++++------- .github/workflows/lint.yml | 16 ++++++++-------- .github/workflows/test.yml | 16 ++++++++-------- 3 files changed, 20 insertions(+), 23 deletions(-) diff --git a/.github/workflows/lint-create-app.yml b/.github/workflows/lint-create-app.yml index 29f1e4899..9bb498a4c 100644 --- a/.github/workflows/lint-create-app.yml +++ b/.github/workflows/lint-create-app.yml @@ -1,4 +1,4 @@ -name: Lint +name: Lint create-app on: pull_request: @@ -36,14 +36,11 @@ jobs: cache-dependency-path: "create-app/package-lock.json" registry-url: "https://registry.npmjs.org" - - name: Change directory - run: cd create-app - - name: Install dependencies - run: npm install + run: npm --prefix create-app install - name: Lint - run: npm run lint + run: npm --prefix create-app run lint - name: Build - run: npm run build + run: npm --prefix create-app run build diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8e8807249..e8875cb1f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,14 +1,14 @@ name: Lint on: - pull_request: - types: - - opened - - synchronize - - reopened - branches: - - main - - next + # pull_request: + # types: + # - opened + # - synchronize + # - reopened + # branches: + # - main + # - next push: branches: - main diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b8f5ef3b1..56b19ebf9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,14 +1,14 @@ name: Test on: - pull_request: - types: - - opened - - synchronize - - reopened - branches: - - main - - next + # pull_request: + # types: + # - opened + # - synchronize + # - reopened + # branches: + # - main + # - next push: branches: - main