app examples into path in ci

This commit is contained in:
weboko 2022-12-22 22:18:33 +01:00
parent 36a3999438
commit 1ef616efcb
No known key found for this signature in database
1 changed files with 3 additions and 3 deletions

View File

@ -37,12 +37,12 @@ jobs:
- name: install - name: install
run: pnpm install --frozen-lockfile run: pnpm install --frozen-lockfile
working-directory: ${{ matrix.example }} working-directory: examples/${{ matrix.example }}
- name: build - name: build
run: pnpm run build run: pnpm run build
working-directory: ${{ matrix.example }} working-directory: examples/${{ matrix.example }}
- name: test - name: test
run: pnpm --if-present test run: pnpm --if-present test
working-directory: ${{ matrix.example }} working-directory: examples/${{ matrix.example }}