fix #257 last item gets partially cut off when using virtual-scroll (… #735
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
PUPPETEER_SKIP_DOWNLOAD: true | |
jobs: | |
build-libs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'npm' | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- run: npm install | |
- run: npm run test:unit | |
- run: npm run build | |
- run: npm run prettier:check | |
- run: npm run lint:lib | |
- name: verify clean build | |
run: git diff --exit-code |