Skip to content

docs(build): fix typo #1014

docs(build): fix typo

docs(build): fix typo #1014

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
textlint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install deps
run: yarn
- name: Run textlint
run: yarn lint
env:
CI: true