Skip to content

fix: missing environment namespace #16

fix: missing environment namespace

fix: missing environment namespace #16

Workflow file for this run

name: Build & Integration tests
on:
workflow_dispatch:
push:
paths-ignore:
- '*.md'
- '.github/**'
branches:
- main
- fix-e2e-test
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: make build
build-example:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build example
run: make build-example
test:
name: Unit and E2E tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build for testing
run: make build-for-testing
# - name: Unit Test
# run: make test-without-building
- name: E2E Test
env:
E2E_API_ENDPOINT: ${{ secrets.E2E_API_ENDPOINT }}
E2E_API_KEY: ${{ secrets.E2E_API_KEY }}
run: make e2e-without-building