Add lint #1276
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 | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
consistency: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'yarn' | |
- name: Allow modern Yarn | |
run: | | |
corepack enable | |
- name: Install dependencies | |
run: | | |
yarn | |
- name: Lint Wiki | |
run: | | |
yarn lint:check | |
# - name: Build Cli | |
# run: | | |
# cd cli && yarn && yarn build && cd .. | |
# - name: Lint IOTA Markdown | |
# run: | | |
# yarn lint:md:check:iota | |
# - name: Lint Shimmer Markdown | |
# run: | | |
# yarn lint:md:check:shimmer | |
# - name: Lint Next Markdown | |
# run: | | |
# yarn lint:md:check:next | |
- name: Format Wiki | |
run: | | |
yarn format:check |