Skip to content
This repository has been archived by the owner on Feb 7, 2023. It is now read-only.

Commit

Permalink
Check docs and overrides with GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbbot committed Sep 24, 2021
1 parent 9eaec8f commit 31ba9f6
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '16'
- run: npm install -g markdownlint-cli@0.23.2
- run: markdownlint '**/*.md' --ignore node_modules
18 changes: 18 additions & 0 deletions .github/workflows/overrides.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check Docs & Overrides

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '16'
- run: npm install
- name: Check Docs
run: npm run export:docs
- name: Check Overrides
run: npm run export:overrides
2 changes: 2 additions & 0 deletions docs/kv.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# KV

## `KVNamespace`

Workers KV is a global, low-latency, key-value data store. It supports exceptionally high read volumes with low-latency,
Expand Down

0 comments on commit 31ba9f6

Please sign in to comment.