Skip to content

Decreased icon size to 20 #85

Decreased icon size to 20

Decreased icon size to 20 #85

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: UI Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
e2e_testing_w_node:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{matrix.node-version}}
cache: "pnpm"
- run: pnpm install
- name: Run ESLint
run: pnpm run lint
- name: "Cypress Run"
uses: cypress-io/github-action@v6