Bump github.com/gorilla/schema from 1.4.0 to 1.4.1 in the go_modules group across 1 directory #62
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test docs deployment | |
on: | |
pull_request: | |
branches: | |
- master | |
# Review gh actions docs if you want to further define triggers, paths, etc | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on | |
jobs: | |
test-deploy: | |
name: Test deployment | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
run_install: false | |
- name: Setup nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
cache: 'pnpm' | |
cache-dependency-path: 'docs/pnpm-lock.yaml' | |
- name: Install modules | |
working-directory: ./docs | |
run: pnpm install --frozen-lockfile --strict-peer-dependencies | |
- name: Install modules | |
working-directory: ./docs | |
run: pnpm build |