Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/southpolesteve/cosmos-emulator-github-action

Github Action for Cosmos Emulator
https://github.com/southpolesteve/cosmos-emulator-github-action

Last synced: 2 months ago
JSON representation

Github Action for Cosmos Emulator

Awesome Lists containing this project

README

        

# Azure Cosmos DB Emulator Github Action

The Azure Cosmost DB Emulator [is already installed on GitHub Actions Virtual Environments for Windows](https://github.com/actions/virtual-environments/tree/main/images/win), so this action only needs to start it.

## Getting Started

🚨🚨 This only works on windows 🚨🚨

Example usage:

```
jobs:
check_pr:
runs-on: windows-latest
steps:
- uses: southpolesteve/cosmos-emulator-github-action@v1
- name: 'npm ci'
run: npm ci
- name: 'npm test'
run: npm test
```