GitHub Actions

https://docs.github.com/en/actions/reference/events-that-trigger-workflows

on:
  pull_request:
    types: [opened, synchronize, reopened]

jobs:
  cypress-test:
    name: Cypress E2E Tests
    runs-on: ubuntu-16.04
    if: github.event.pull_request.draft == false

Artifacts

https://github.com/actions/upload-artifact?tab=readme-ov-file#usage