Skip to content

Commit

Permalink
refactor(deps): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Mar 12, 2024
1 parent a7f5bc5 commit 755c440
Show file tree
Hide file tree
Showing 10 changed files with 6,156 additions and 76 deletions.
12 changes: 2 additions & 10 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
{
"presets": [
"es2015"
],
"env": {
"development": {
"presets": [
"jsdoc-to-assert",
"power-assert"
]
}
}
"@babel/preset-env"
]
}
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
5 changes: 5 additions & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"require": [
"@babel/register"
]
}
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-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)
# 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")

textlint rule that ignore error using comments directive.

Expand Down

0 comments on commit 755c440

Please sign in to comment.