Skip to content

chore(e2e): create draft workflow to run automation #1

chore(e2e): create draft workflow to run automation

chore(e2e): create draft workflow to run automation #1

Workflow file for this run

name: Automation Testing (Draft)
on:
push:
branches: [ main, main-beta, epic/* ]
workflow_dispatch:
env:
node-version: 20.x
jobs:
e2e-tests:
name: Automation Testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node v${{ env.node-version }}
uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: ${{ env.node-version }}
- name: Install NPM Dependencies
run: npm ci
- name: Run Tests
run: npm run test:e2e
- name: Collect Report & Upload artifact
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: e2e/.diff