Skip to content

✅: test reset for useCounter (#570 by @luckrnx09) #26

✅: test reset for useCounter (#570 by @luckrnx09)

✅: test reset for useCounter (#570 by @luckrnx09) #26

name: Update Algolia index
on:
push:
branches:
- master
env:
NODE_VERSION: 20
PNPM_VERSION: 8
jobs:
run:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Pnpm
uses: pnpm/action-setup@v3
with:
version: ${{ env.PNPM_VERSION }}
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Generate documentation from JSDoc
run: pnpm generate-doc
- name: Update Algolia index
env:
ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }}
ALGOLIA_ADMIN_KEY: ${{ secrets.ALGOLIA_ADMIN_KEY }}
run: pnpm update-algolia-index