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 01ee39a commit b0046c7Copy full SHA for b0046c7
.github/workflows/ja.yaml
@@ -0,0 +1,29 @@
1
+name: Lint
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
22
+ with:
23
+ node-version: ${{ matrix.node-version }}
24
+ - name: Lint
25
+ run: |
26
+ yarn
27
+ yarn lint
28
+ env:
29
+ CI: true
0 commit comments