Skip to content

uui-menu-item: custom expand symbol render method #2492

uui-menu-item: custom expand symbol render method

uui-menu-item: custom expand symbol render method #2492

Workflow file for this run

name: Tests
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the dev branch
pull_request:
branches-ignore:
- production
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
NODE_OPTIONS: --max_old_space_size=16384
# This workflow contains two jobs called "test" and "build" and runs them in parallel
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Use Node.js
uses: actions/setup-node@v5
with:
node-version-file: .nvmrc
check-latest: true
cache: 'npm'
- run: npm install
- run: npm run lint
- name: Install Playwright dependencies
run: npx playwright install --with-deps
- run: npm run test
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Cache build setup
uses: actions/cache@v4
with:
path: node_modules/.cache
key: ${{ runner.os }}-cache-${{ github.sha }}
restore-keys: |
${{ runner.os }}-cache-
- name: Use Node.js
uses: actions/setup-node@v5
with:
node-version-file: .nvmrc
check-latest: true
cache: 'npm'
- run: npm install
- run: npm run build:prod