Skip to content

Use offsetWidth instead of getBoundingClientRect() on calculations #22

Use offsetWidth instead of getBoundingClientRect() on calculations

Use offsetWidth instead of getBoundingClientRect() on calculations #22

Workflow file for this run

name: CI
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint
- name: Run Prettier
run: npm run prettier
- name: Build
run: npm run build