Add Playwright and k6 E2E tests for comparison #102
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: E2E tests - Cypress | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
- name: Install Mage | |
uses: magefile/mage-action@v3 | |
with: | |
install-only: true | |
- name: Install yarn dependencies | |
run: yarn install | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
- name: Build binaries | |
run: mage -v | |
- name: Build frontend | |
run: yarn build | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
- name: Start Grafana | |
run: docker run --rm -d -p 3000:3000 --name=grafana --env GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=grafana-azure-data-explorer-datasource --volume "$PWD/dist:/var/lib/grafana/plugins/grafana-azure-data-explorer-datasource" grafana/grafana; sleep 30 | |
- name: Run E2E tests | |
run: yarn run e2e | |
env: | |
E2E_ADX_CLIENT_ID: ${{ secrets.E2E_ADX_CLIENT_ID }} | |
E2E_ADX_CLIENT_SECRET: ${{ secrets.E2E_ADX_CLIENT_SECRET }} | |
E2E_ADX_CLUSTER_URL: ${{ secrets.E2E_ADX_CLUSTER_URL }} | |
E2E_ADX_TENANT_ID: ${{ secrets.E2E_ADX_TENANT_ID }} |