Skip to content

fix: remove branch that doesn't exist #1

fix: remove branch that doesn't exist

fix: remove branch that doesn't exist #1

Workflow file for this run

name: e2e Tests
on:
push:
branches: [alpha, beta, rc, main]
pull_request:
types: [opened, synchronize]
branches: [alpha, beta, rc, main]
jobs:
test-e2e:
runs-on: windows-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm install
- name: Fix auto-fixable eslint issues
run: npm run eslint -- --fix
- name: Run e2e tests
run: npm run test:e2e