Add RAG using LangChain with Azure OpenAI and Cosmos DB for MongoDB vCore Template #491
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: Test Deploy (on PR) | |
on: | |
pull_request: | |
branches: | |
- main | |
# Review gh actions docs if you want to further define triggers, paths, etc | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
test-deploy: | |
name: Test deployment | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
cache-dependency-path: website/package-lock.json | |
- name: Build website | |
working-directory: website | |
run: | | |
npm ci | |
npm run build | |
- name: Run Tests | |
working-directory: website | |
run: | | |
npm test |