Skip to content

Commit

Permalink
CI: move to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Apr 24, 2021
1 parent e22f819 commit 917d168
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: test
on: [push, pull_request]
jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14]
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- name: Test
run: yarn test
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @textlint-ja/textlint-rule-morpheme-match [![Build Status](https://travis-ci.org/textlint-ja/textlint-rule-morpheme-match.svg?branch=master)](https://travis-ci.org/textlint-ja/textlint-rule-morpheme-match)
# @textlint-ja/textlint-rule-morpheme-match [![Actions Status: test](https://github.com/textlint-ja/textlint-rule-morpheme-match/workflows/test/badge.svg)](https://github.com/textlint-ja/textlint-rule-morpheme-match/actions?query=workflow%3A"test")

形態素解析結果のTokenベースの辞書でマッチするtextlintルール。

Expand Down

0 comments on commit 917d168

Please sign in to comment.