Skip to content

basic stack animation demo scroll animation duration changed for the … #22

basic stack animation demo scroll animation duration changed for the …

basic stack animation demo scroll animation duration changed for the … #22

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
# allow manual triggers
workflow_dispatch: {}
# Cancel in progress workflows on pull_requests.
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions: read-all
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test
- name: Run linter
run: yarn lint
- name: Check types
run: yarn types