From 1ef616efcbe43d3e40c22a44ac592b1a891ef05f Mon Sep 17 00:00:00 2001 From: weboko Date: Thu, 22 Dec 2022 22:18:33 +0100 Subject: [PATCH] app examples into path in ci --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b46e89..fbea858 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,12 +37,12 @@ jobs: - name: install run: pnpm install --frozen-lockfile - working-directory: ${{ matrix.example }} + working-directory: examples/${{ matrix.example }} - name: build run: pnpm run build - working-directory: ${{ matrix.example }} + working-directory: examples/${{ matrix.example }} - name: test run: pnpm --if-present test - working-directory: ${{ matrix.example }} + working-directory: examples/${{ matrix.example }}