Skip to content

docs(quickstart): add go mod tidy note #73

docs(quickstart): add go mod tidy note

docs(quickstart): add go mod tidy note #73

Workflow file for this run

name: docs
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: dorny/paths-filter@v2
id: changes
with:
filters: |
docs:
- '.github/workflows/**/*.yml'
- 'docs/**'
- uses: actions/cache@v3
with:
path: ${{ github.workspace }}/docs/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('docs/pnpm-lock.yaml') }}-${{ hashFiles('**.[jt]s', '**.md', '**.mdx', '**.[jt]sx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('docs/pnpm-lock.yaml') }}-${{ hashFiles('**.[jt]s', '**.md', '**.mdx', '**.[jt]sx') }}
${{ runner.os }}-nextjs-${{ hashFiles('docs/pnpm-lock.yaml') }}-
${{ runner.os }}-nextjs-
- uses: pnpm/action-setup@v2
with:
version: 8.6.0
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: pnpm
cache-dependency-path: ./docs/pnpm-lock.yaml
- run: pnpm install --frozen-lockfile
working-directory: ./docs
- run: pnpm test
if: steps.changes.outputs.docs == 'true'
working-directory: ./docs