Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use TypeScript && Use locator #2

Merged
merged 7 commits into from
Feb 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
changelog:
exclude:
labels:
- 'Type: Meta'
- 'Type: Question'
- 'Type: Release'

categories:
- title: Security Fixes
labels: ['Type: Security']
- title: Breaking Changes
labels: ['Type: Breaking Change']
- title: Features
labels: ['Type: Feature']
- title: Bug Fixes
labels: ['Type: Bug']
- title: Documentation
labels: ['Type: Documentation']
- title: Refactoring
labels: ['Type: Refactoring']
- title: Testing
labels: ['Type: Testing']
- title: Maintenance
labels: ['Type: Maintenance']
- title: CI
labels: ['Type: CI']
- title: Dependency Updates
labels: ['Type: Dependencies', "dependencies"]
- title: Other Changes
labels: ['*']
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: [14, 16, 18]
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Test
run: npm test
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

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

textlint rule that disallow to use 半角カタカナ.

Expand All @@ -8,8 +8,8 @@ textlint rule that disallow to use 半角カタカナ.

半角カナとしては以下を対象としています。

- Halfwidth CJK punctuation(U+FF61〜FF64)
- Halfwidth Katakana variants(U+FF65〜FF9F)
- Half-width CJK punctuation(U+FF61〜FF64)
- Half-width Katakana variants(U+FF65〜FF9F)

## Install

Expand Down Expand Up @@ -49,7 +49,7 @@ See [Releases page](https://github.com/textlint-ja/textlint-rule-no-hankaku-kana

Install devDependencies and Run `npm test`:

npm i -d && npm test
npm test

## Contributing

Expand Down
Loading