Skip to content

ui 2.0

ui 2.0 #301

Workflow file for this run

on:
push:
branches:
- main
- dev
- 'release/**'
paths:
- "e2e/**"
pull_request:
branches:
- main
- dev
- 'release/**'
paths:
- "e2e/**"
jobs:
lint-e2e:
runs-on: [self-hosted, Linux, X64]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: "./e2e/.nvmrc"
- uses: pnpm/action-setup@v4
with:
# FIXME: temporarily pinned because of https://github.com/pnpm/pnpm/pull/9959
version: 10.17
run_install: false
- name: install deps
working-directory: ./e2e
run: pnpm i --frozen-lockfile
- name: Lint
working-directory: ./e2e
run: pnpm lint