Skip to content

Commit 755c440

Browse files
committed
refactor(deps): update dependencies
1 parent a7f5bc5 commit 755c440

10 files changed

+6156
-76
lines changed

.babelrc

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
{
22
"presets": [
3-
"es2015"
4-
],
5-
"env": {
6-
"development": {
7-
"presets": [
8-
"jsdoc-to-assert",
9-
"power-assert"
10-
]
11-
}
12-
}
3+
"@babel/preset-env"
4+
]
135
}

.github/workflows/test.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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: [14, 16, 18]
10+
steps:
11+
- name: checkout
12+
uses: actions/checkout@v3
13+
- name: setup Node.js ${{ matrix.node-version }}
14+
uses: actions/setup-node@v3
15+
with:
16+
node-version: ${{ matrix.node-version }}
17+
- name: Install
18+
run: npm install
19+
- name: Test
20+
run: npm test

.mocharc.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"require": [
3+
"@babel/register"
4+
]
5+
}

.travis.yml

-3
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# textlint-filter-rule-comments [![Build Status](https://travis-ci.org/textlint/textlint-filter-rule-comments.svg?branch=master)](https://travis-ci.org/textlint/textlint-filter-rule-comments)
1+
# textlint-filter-rule-comments [![Actions Status: test](https://github.com/textlint/textlint-filter-rule-comments/workflows/test/badge.svg)](https://github.com/textlint/textlint-filter-rule-comments/actions?query=workflow%3A"test")
22

33
textlint rule that ignore error using comments directive.
44

0 commit comments

Comments
 (0)