File tree 4 files changed +3515
-72
lines changed
4 files changed +3515
-72
lines changed Original file line number Diff line number Diff line change 13
13
FORCE_COLOR : 1
14
14
NPM_CONFIG_COLOR : always
15
15
jobs :
16
+ verify-matrix :
17
+ runs-on : ubuntu-latest
18
+ strategy :
19
+ matrix :
20
+ node :
21
+ - 14.18.0
22
+ - 16.0.0
23
+ - 16
24
+ steps :
25
+ - uses : actions/checkout@v3
26
+ - name : Setup node
27
+ uses : actions/setup-node@v3
28
+ with :
29
+ node-version : ${{ matrix.node }}
30
+ cache : npm
31
+ - run : npm clean-install
32
+ - run : npm test
16
33
verify :
17
34
runs-on : ubuntu-latest
18
35
steps :
30
47
if : github.event_name == 'push'
31
48
needs :
32
49
- verify
50
+ - verify-matrix
33
51
steps :
34
52
35
53
with :
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ form8ion plugin for projects that manage code style with prettier
25
25
[ ![ MIT license] [ license-badge ]] [ license-link ]
26
26
[ ![ npm] [ npm-badge ]] [ npm-link ]
27
27
[ ![ Try @form8ion/prettier on RunKit] [ runkit-badge ]] [ runkit-link ]
28
+ ![ node] [ node-badge ]
28
29
29
30
<!-- consumer-badges end -->
30
31
@@ -114,3 +115,5 @@ $ npm test
114
115
[ runkit-link ] : https://npm.runkit.com/@form8ion/prettier
115
116
116
117
[ runkit-badge ] : https://badge.runkitcdn.com/@form8ion/prettier.svg
118
+
119
+ [ node-badge ] : https://img.shields.io/node/v/@form8ion/prettier?logo=node.js
You can’t perform that action at this time.
0 commit comments