Skip to content

docs(wasm): add sections about Node.js and module access (#1046) #1052

docs(wasm): add sections about Node.js and module access (#1046)

docs(wasm): add sections about Node.js and module access (#1046) #1052

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