Skip to content

Commit 20d932c

Browse files
committed
feat(node-versions): defined the supported versions for this package
1 parent b9b7134 commit 20d932c

File tree

4 files changed

+3515
-72
lines changed

4 files changed

+3515
-72
lines changed

.github/workflows/node-ci.yml

+18
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,23 @@ env:
1313
FORCE_COLOR: 1
1414
NPM_CONFIG_COLOR: always
1515
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
1633
verify:
1734
runs-on: ubuntu-latest
1835
steps:
@@ -30,6 +47,7 @@ jobs:
3047
if: github.event_name == 'push'
3148
needs:
3249
- verify
50+
- verify-matrix
3351
steps:
3452
- uses: octokit/[email protected]
3553
with:

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ form8ion plugin for projects that manage code style with prettier
2525
[![MIT license][license-badge]][license-link]
2626
[![npm][npm-badge]][npm-link]
2727
[![Try @form8ion/prettier on RunKit][runkit-badge]][runkit-link]
28+
![node][node-badge]
2829

2930
<!--consumer-badges end -->
3031

@@ -114,3 +115,5 @@ $ npm test
114115
[runkit-link]: https://npm.runkit.com/@form8ion/prettier
115116

116117
[runkit-badge]: https://badge.runkitcdn.com/@form8ion/prettier.svg
118+
119+
[node-badge]: https://img.shields.io/node/v/@form8ion/prettier?logo=node.js

0 commit comments

Comments
 (0)