Skip to content

Commit fef1426

Browse files
committed
🍟 feat: add .github/workflows/textlint.yml
1 parent fa50edc commit fef1426

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/textlint.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Node.js Textlint
2+
on: push
3+
4+
jobs:
5+
build:
6+
name: Node.js ${{ matrix.os }} ${{ matrix.node }}
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
matrix:
10+
os: [ubuntu-latest]
11+
node: [ '10' ]
12+
steps:
13+
- uses: actions/checkout@master
14+
- name: Setup node
15+
uses: actions/setup-node@v1
16+
with:
17+
node-version: ${{ matrix.node }}
18+
- run: yarn install
19+
- run: yarn textlint
20+
env:
21+
NAME: hisasann

0 commit comments

Comments
 (0)