Skip to content

Added test for computed index on DateTime column migration #1157

Added test for computed index on DateTime column migration

Added test for computed index on DateTime column migration #1157

Workflow file for this run

name: Documentation PRs
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
linting:
name: "Markdown linting"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Check out the code
- name: Lint Code Base
uses: docker://ghcr.io/igorshubovych/markdownlint-cli:latest
with:
args: "--disable MD009 -- docs/**/*.md"
spellcheck:
name: "Spell check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Check out the code
- uses: actions/setup-node@v3
name: Setup node
with:
node-version: "16"
- run: npm install -g cspell
name: Install cSpell
- run: cspell --config ./docs/cSpell.json "docs/**/*.md"
name: run cSpell