imp!: remove proto3json encoding #11
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
# This check-docs workflow was created based on instructions from: | |
# https://docusaurus.io/docs/deployment | |
name: Check docs build | |
# This workflow runs when a PR is labeled with `docs` | |
# This will check if the docs build successfully by running `npm run build` | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'docs/**' | |
- '.github/workflows/check-docs.yml' | |
jobs: | |
check-docs-build: | |
name: Check docs build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: npm | |
cache-dependency-path: docs/package-lock.json | |
- name: Install dependencies | |
run: cd docs && npm ci | |
- name: Test build website | |
run: cd docs && npm run build |