From 88f72b1682b1a4114d6ff5d27563ff95a7230641 Mon Sep 17 00:00:00 2001 From: bearni95 Date: Tue, 14 May 2024 10:25:20 +0200 Subject: [PATCH] reverted test change to action --- .github/workflows/taikoon-ui-ci.yml | 44 ----------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/taikoon-ui-ci.yml diff --git a/.github/workflows/taikoon-ui-ci.yml b/.github/workflows/taikoon-ui-ci.yml deleted file mode 100644 index 8aecc97c8bd..00000000000 --- a/.github/workflows/taikoon-ui-ci.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Taikoon UI Build and Checks - -on: workflow_call - -jobs: - build: - runs-on: [taiko-runner] - steps: - - name: Cancel previous runs - uses: styfle/cancel-workflow-action@0.12.1 - with: - access_token: ${{ github.token }} - - - name: Checkout repository - uses: actions/checkout@v4 - with: - submodules: recursive - - - name: Install pnpm dependencies - uses: ./.github/actions/install-pnpm-dependencies - # This step is needed because the .env file is not committed to the repository - # and the Svelte check complains about not finding the exports from $env/static/public, - # which will be generated based on the .env file when running `svelte-kit sync` - - name: Copy .env.example to .env - working-directory: ./packages/taikoon-ui - run: cp .env.example .env - - - name: Frontend build - working-directory: ./packages/taikoon-ui - run: pnpm build - - - name: Svelte check - working-directory: ./packages/taikoon-ui - run: pnpm check - - - name: Check formatting - working-directory: ./packages/taikoon-ui - run: pnpm lint - - - name: Unit tests - env: - SKIP_ENV_VALIDATION: "true" - working-directory: ./packages/taikoon-ui - run: pnpm test:unit