Skip to content

Commit

Permalink
Update CI to include new example
Browse files Browse the repository at this point in the history
  • Loading branch information
avra-m3 committed Feb 1, 2024
1 parent 2154482 commit 35a0b80
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,18 @@ jobs:
- name: "Install project dependencies ⚙️"
run: yarn install --frozen-lockfile

- name: "Install example dependencies ⚙️"
- name: "Install simple example dependencies ⚙️"
working-directory: docs/examples/simple
run: yarn install --frozen-lockfile

- name: "Test 🧪"
- name: "Install auth example dependencies ⚙️"
working-directory: docs/examples/customErrorHandlingAndAuth
run: yarn install --frozen-lockfile

- name: "Test auth example 🧪"
working-directory: docs/examples/customErrorHandlingAndAuth
run: yarn test:ci

- name: "Test simple example 🧪"
working-directory: docs/examples/simple
run: yarn test:ci

0 comments on commit 35a0b80

Please sign in to comment.