From b60b44eeaff989d3d4c0f5f5e4b9c3714520abaf Mon Sep 17 00:00:00 2001 From: Tim Fish Date: Sun, 12 May 2024 19:34:22 +0200 Subject: [PATCH] backwards compat --- .github/workflows/build.yml | 8 ++++---- package.json | 6 +++++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aabe0716..4e935fbb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - name: Install run: yarn install - name: Build - run: yarn start build + run: yarn build - name: Pack run: yarn pack - name: Archive Artifacts @@ -49,7 +49,7 @@ jobs: node-version-file: 'package.json' - run: yarn install - name: Run Linter - run: yarn start lint + run: yarn lint test: name: Unit Tests @@ -70,7 +70,7 @@ jobs: - run: yarn install - name: Run Unit Tests timeout-minutes: 10 - run: yarn start test + run: yarn test e2e: name: E2E Tests @@ -93,7 +93,7 @@ jobs: - run: yarn install - name: Run E2E Tests timeout-minutes: 30 - run: yarn start e2e + run: yarn e2e required_jobs_passed: name: All required jobs passed or were skipped diff --git a/package.json b/package.json index 6822ffcf..b0661a94 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,11 @@ "access": "public" }, "scripts": { - "start": "node scripts/start.mjs" + "start": "node scripts/start.mjs", + "build": "node scripts/start.mjs build", + "test": "node scripts/start.mjs test", + "lint": "node scripts/start.mjs lint", + "e2e": "node scripts/start.mjs e2e" }, "dependencies": { "@sentry/browser": "8.0.0-beta.5",