renovate[bot] efd0fd21da
fix(deps): update dependency @codemirror/view to v6.7.1 (#206)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Lautzenheiser <lautzd@gmail.com>
2022-12-12 11:02:47 -05:00

55 lines
884 B
YAML

name: Docs
on:
workflow_dispatch:
push:
branches: ["main"]
paths:
- docs/**
pull_request:
branches: ["main"]
paths:
- docs/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: yarn
cache-dependency-path: docs/yarn.lock
node-version: 16
- name: Install
working-directory: ./docs
run: |
yarn install --frozen-lockfile
- name: Lint
working-directory: ./docs
run: |
yarn lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
integration_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3