From 759450b1233568ca83ee9beed2a8ccfef7c1a00a Mon Sep 17 00:00:00 2001 From: Mikyo King Date: Tue, 9 Jan 2024 14:20:40 -0700 Subject: [PATCH] fix the order so tests can run --- .github/workflows/typescript-CI.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/typescript-CI.yaml b/.github/workflows/typescript-CI.yaml index 4ece6727a..9ae4a978e 100644 --- a/.github/workflows/typescript-CI.yaml +++ b/.github/workflows/typescript-CI.yaml @@ -31,12 +31,12 @@ jobs: - name: Install Dependencies working-directory: ./js run: pnpm install --frozen-lockfile -r - - name: Test - working-directory: ./js - run: pnpm run -r test - name: Pre-Build working-directory: ./js run: pnpm run -r prebuild + - name: Test + working-directory: ./js + run: pnpm run -r test - name: Build working-directory: ./js run: pnpm run -r build