Add cards bot sample #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci-node | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js 22 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Build echo bot | |
working-directory: ./samples/basic/echo-bot/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 |