Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3.0.2.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](937d244753...48af2dc4a9)
---
updated-dependencies:
- dependency-name: actions/cache
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Robert Sese <rsese@github.com>
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
name: Sync search - PR
|
|
|
|
# **What it does**: Tries running the sync-search when relevant files change.
|
|
# **Why we have it**: To test that the script works and the popular pages json is valid.
|
|
# **Who does it impact**: Docs engineering.
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- script/search/parse-page-sections-into-records.js
|
|
- script/search/popular-pages.js
|
|
- lib/search/popular-pages.json
|
|
# Ultimately, for debugging this workflow itself
|
|
- .github/workflows/sync-search-pr.yml
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
# This allows a subsequently queued workflow run to interrupt previous runs
|
|
concurrency:
|
|
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561
|
|
with:
|
|
node-version: 16.14.x
|
|
cache: npm
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Cache nextjs build
|
|
uses: actions/cache@48af2dc4a9e8278b89d7fa154b955c30c6aaab09
|
|
with:
|
|
path: .next/cache
|
|
key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }}
|
|
|
|
- name: Build
|
|
run: npm run build
|
|
|
|
- name: Run sync-search
|
|
env:
|
|
# Set filtered to only these so it doesn't run for too long.
|
|
LANGUAGE: en
|
|
VERSION: free-pro-team@latest
|
|
run: npm run sync-search
|