File tree Expand file tree Collapse file tree 4 files changed +38
-49
lines changed Expand file tree Collapse file tree 4 files changed +38
-49
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Test
2
+ on :
3
+ push :
4
+ branches-ignore :
5
+ - gh-pages
6
+ pull_request :
7
+ env :
8
+ CI : true
9
+
10
+ jobs :
11
+ test :
12
+ name : " Test on Node.js ${{ matrix.node }} OS: ${{matrix.os}}"
13
+ runs-on : ${{ matrix.os }}
14
+ strategy :
15
+ matrix :
16
+ os : [ubuntu-latest]
17
+ node : [10, 12, 14]
18
+ steps :
19
+ - name : Checkout
20
+ uses : actions/checkout@v2
21
+ - name : Setup Node.js ${{ matrix.node }}
22
+ uses : actions/setup-node@v1
23
+ with :
24
+ node-version : ${{ matrix.node }}
25
+ - name : Install
26
+ run : yarn install
27
+ - name : Lint
28
+ run : yarn lint
29
+ - name : Lint docs
30
+ run : yarn lint:docs
31
+ - name : Test
32
+ run : yarn test
33
+ - name : Integration Test
34
+ run : yarn test:integrations
Original file line number Diff line number Diff line change 2
2
3
3
<h1 align =" center " >@intlify/eslint-plugin-vue-i18n</h1 >
4
4
<p align =" center " >
5
- <a href =" https://circleci .com/gh/ intlify/eslint-plugin-vue-i18n/tree/master " ><img src =" https://circleci .com/gh/ intlify/eslint-plugin-vue-i18n/tree/master .svg?style=svg " alt =" Build Status" ></a >
5
+ <a href =" https://github .com/intlify/eslint-plugin-vue-i18n/actions?query=workflow%3ATest " ><img src =" https://github .com/intlify/eslint-plugin-vue-i18n/workflows/Test/badge .svg " alt =" Test Status" ></a >
6
6
</p >
7
-
8
- <p align =" center " >ESLint plugin for Vue I18n</p >
9
-
10
7
<p align =" center " >
11
- <a href =" https://www.patreon.com/kazupon " target =" _blank " >
12
- <img src="https://c5.patreon.com/external/logo/become_a_patron_button.png" alt="Become a Patreon">
13
- </a >
8
+ <a href =" https://www.npmjs.com/package/@intlify/eslint-plugin-vue-i18n " ><img src =" https://img.shields.io/npm/v/@intlify/eslint-plugin-vue-i18n.svg " alt =" NPM " ></a >
14
9
</p >
10
+ <p align =" center " >ESLint plugin for Vue I18n</p >
15
11
16
12
## :book : Documentation
17
13
Original file line number Diff line number Diff line change 66
66
"license" : " MIT" ,
67
67
"main" : " lib/index.js" ,
68
68
"peerDependencies" : {
69
- "eslint" : " ^5.0.0 || ^6.0.0"
69
+ "eslint" : " ^5.0.0 || ^6.0.0 || ^7.0.0 "
70
70
},
71
71
"repository" : {
72
72
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments