improve the transitionOpacity type #9
Workflow file for this run
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: Chrome | |
on: | |
pull_request: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
workflow_call: | |
jobs: | |
cypress-ct: | |
runs-on: ubuntu-latest | |
env: | |
CYPRESS_RETRIES: 2 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8 | |
run_install: false | |
- name: Install dependencies | |
run: pnpm install | |
- name: Window scroll | |
run: pnpm -C packages/vue-use-fixed-header run test:chrome | |
- name: Custom scrolling container | |
run: pnpm -C packages/vue-use-fixed-header test:container:chrome |