We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d4cf5c commit 844bbe3Copy full SHA for 844bbe3
.github/workflows/ja.yaml
@@ -1,29 +1,18 @@
1
-name: Lint
+name: textlint
2
3
on: [push]
4
5
-defaults:
6
- run:
7
- shell: bash
8
-
9
jobs:
10
textlint:
11
12
runs-on: ubuntu-latest
13
14
- strategy:
15
- matrix:
16
- node-version: [12.x]
17
18
steps:
19
- - uses: actions/checkout@v1
20
- - name: Use Node.js ${{ matrix.node-version }}
21
- uses: actions/setup-node@v1
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v2
22
with:
23
- node-version: ${{ matrix.node-version }}
24
- - name: Lint
25
- run: |
26
- yarn
27
- yarn lint
28
- env:
29
- CI: true
+ node-version: '14'
+ - name: Install deps
+ run: yarn
+ - name: Run textlint
+ run: yarn lint
0 commit comments