diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 17627a27d..66e2135ed 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -1,32 +1,52 @@ - # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions -name: Node.js CI +name: CI on: push: - branches: [ master ] + branches: [master] pull_request: - branches: [ master ] + branches: [master] jobs: test: runs-on: ubuntu-latest + name: "Unit Tests" steps: - - uses: actions/checkout@v2 - - name: Use Node.js 12.x - uses: actions/setup-node@v1 - with: - node-version: 12.x - - run: npm ci - - run: npm run build:ci --if-present - - run: npm test + - uses: actions/checkout@v2 + - name: Use Node.js 12.x + uses: actions/setup-node@v1 + with: + node-version: 12.x + - run: npm ci + - run: npm run test build: runs-on: ubuntu-latest + name: "Build" steps: - - uses: actions/checkout@v2 - - name: Use Node.js 12.x - uses: actions/setup-node@v1 - with: - node-version: 12.x - - run: npm ci - - run: npm run build:ci --if-present + - uses: actions/checkout@v2 + - name: Use Node.js 12.x + uses: actions/setup-node@v1 + with: + node-version: 12.x + - run: npm ci + - run: npm run build:ci + endtoend: + name: "End to End Tests" + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - uses: southpolesteve/cosmos-emulator-github-action@v1 + - name: Use Node.js 12.x + uses: actions/setup-node@v1 + with: + node-version: 12.x + - name: End to End Tests + run: | + npm ci + npm start & + npm ci --prefix ./cypress + npm run test:ci --prefix ./cypress -- --spec ./integration/dataexplorer/ci-tests/createDatabase.spec.ts + shell: bash + env: + EMULATOR_ENDPOINT: https://0.0.0.0:8081/ + NODE_TLS_REJECT_UNAUTHORIZED: 0