Skip to content

chore(release): 1.0.0-alpha.102 #662

chore(release): 1.0.0-alpha.102

chore(release): 1.0.0-alpha.102 #662

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: true
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