File tree Expand file tree Collapse file tree 4 files changed +21
-5
lines changed Expand file tree Collapse file tree 4 files changed +21
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : test
2
+ on : [push, pull_request]
3
+ jobs :
4
+ test :
5
+ name : " Test on Node.js ${{ matrix.node-version }}"
6
+ runs-on : ubuntu-latest
7
+ strategy :
8
+ matrix :
9
+ node-version : [12, 14]
10
+ steps :
11
+ - name : checkout
12
+ uses : actions/checkout@v2
13
+ - name : setup Node.js ${{ matrix.node-version }}
14
+ uses : actions/setup-node@v2
15
+ with :
16
+ node-version : ${{ matrix.node-version }}
17
+ - name : Install
18
+ run : yarn install
19
+ - name : Test
20
+ run : yarn test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- # textlint-rule-preset-JTF-style [ ![ textlint rule] ( https://img.shields.io/badge/textlint-fixable-green.svg?style=social )] ( https://textlint.github.io/ ) [ ![ Build Status] ( https://travis-ci.org /textlint-ja/textlint-rule-preset-JTF-style.svg?branch=master )] ( https://travis-ci.org /textlint-ja/textlint-rule-preset-JTF-style )
1
+ # textlint-rule-preset-JTF-style [ ![ textlint rule] ( https://img.shields.io/badge/textlint-fixable-green.svg?style=social )] ( https://textlint.github.io/ ) [ ![ Actions Status: test ] ( https://github.com /textlint-ja/textlint-rule-preset-JTF-style/workflows/test/badge .svg )] ( https://github.com /textlint-ja/textlint-rule-preset-JTF-style/actions?query=workflow%3A"test" )
2
2
3
3
[ JTF日本語標準スタイルガイド(翻訳用)] ( https://www.jtf.jp/tips/styleguide " JTF日本語標準スタイルガイド(翻訳用) ") for [ textlint] ( https://github.com/textlint/textlint " textlint ") .
4
4
Original file line number Diff line number Diff line change 1
1
// LICENSE : MIT
2
2
"use strict" ;
3
- require ( "../src/" ) ;
4
3
// test prh rule
5
4
import TextLintTester from "textlint-tester" ;
6
5
var tester = new TextLintTester ( ) ;
You can’t perform that action at this time.
0 commit comments