Skip to content

feat: Adding scrollYFitToScreen properties #15

feat: Adding scrollYFitToScreen properties

feat: Adding scrollYFitToScreen properties #15

Workflow file for this run

name: 🏗️ Build
on:
pull_request:
branches: ['main', 'dev', 'master', 'develop']
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- name: Typescript build
run: tsc
- name: Vite build
run: npm run build