Skip to content

feat(plugin-algolia): Integrate startTransition for navigation and refactor preconnect logic πŸ” #7891

feat(plugin-algolia): Integrate startTransition for navigation and refactor preconnect logic πŸ”

feat(plugin-algolia): Integrate startTransition for navigation and refactor preconnect logic πŸ” #7891

Workflow file for this run

name: Lint
# Controls when the action will run.
on:
# Triggers the workflow on pull request events but only for the main branch
pull_request:
branches: [main]
push:
branches: [main]
merge_group:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions: {}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
# The type of runner that the job will run on
runs-on: ubuntu-latest
permissions:
contents: read
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 1
- name: Install Pnpm
run: |
npm install -g corepack@latest --force
corepack enable
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: '.nvmrc'
package-manager-cache: false
- name: Install Dependencies
run: pnpm install --ignore-scripts
- name: Lint
run: pnpm run lint
- name: Check Dependency Version
run: pnpm run check-dependency-version