Skip to content

fix: make EsCarousel autoplay stop upon interaction #7455

fix: make EsCarousel autoplay stop upon interaction

fix: make EsCarousel autoplay stop upon interaction #7455

Workflow file for this run

name: ci
on:
workflow_call:
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
- name: Get nodenv version πŸ”Œ
id: nodenv
shell: bash
run: echo "node-version=$(cat .node-version)" >> $GITHUB_OUTPUT
- name: Setup node env πŸ—
uses: actions/setup-node@v4
with:
node-version: '${{ steps.nodenv.outputs.node-version }}'
check-latest: true
- name: Install dependencies πŸ‘¨πŸ»β€πŸ’»
run: |
make install
make symlink
# `npm install` (in make install) triggers es-ds-docs' postinstall, which runs
# `nuxt prepare` against the published @energysage/es-ds-components from the lockfile β€”
# before `make symlink` swaps in the local layer. Re-prepare with a clean .nuxt so the
# auto-import types reflect the symlinked layer's current source.
- name: Re-prepare Nuxt against symlinked layer
working-directory: ./es-ds-docs
run: rm -rf .nuxt && npx nuxi prepare
- name: Building
run: make build
- name: Run linter πŸ‘€
run: make lint
- name: Run typechecker
run: make typecheck
- name: Run tests πŸ§ͺ
run: make test