Skip to content

Commit

Permalink
Add build steps for Cards bot and Skill bot in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rido-min committed Feb 24, 2025
1 parent 08f3f88 commit b03a4da
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,26 @@ jobs:
run: npm run lint
working-directory: ./samples

- name: Build echo bot
- name: Build Echo bot
working-directory: ./samples/basic/echo-bot/nodejs/
run: |
npm install
npm run build
- name: Build Cards bot
working-directory: ./samples/basic/cards/nodejs/
run: |
npm install
npm run build
- name: Build Copilot Studio client sample
working-directory: ./samples/basic/copilotstudio-client/nodejs/
run: |
npm install
npm run build
- name: Build Skill bot
working-directory: ./samples/complex/copilotstudio-skill/nodejs/
run: |
npm install
npm run build

0 comments on commit b03a4da

Please sign in to comment.