Skip to content

Commit

Permalink
feat(node-versions): defined the supported ranges as the already effe…
Browse files Browse the repository at this point in the history
…ctive ranges
  • Loading branch information
travi committed Aug 24, 2023
1 parent c4b35df commit 5e383f7
Show file tree
Hide file tree
Showing 4 changed files with 3,666 additions and 325 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,25 @@ env:
FORCE_COLOR: 1
NPM_CONFIG_COLOR: always
jobs:
verify-matrix:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 16.14.0
- 18.0.0
- 18
- 20
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
cache: npm
node-version: ${{ matrix.node }}
- run: npm clean-install
- run: npm audit signatures
- run: npm test
verify:
runs-on: ubuntu-latest
steps:
Expand All @@ -28,6 +47,7 @@ jobs:
release:
needs:
- verify
- verify-matrix
permissions:
contents: write
id-token: write
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ opinionated scaffolder for Ruby projects
[![npm][npm-badge]][npm-link]
[![Try @form8ion/ruby-scaffolder on RunKit][runkit-badge]][runkit-link]
[![MIT license][license-badge]][license-link]
![node][node-badge]

<!--consumer-badges end -->

Expand Down Expand Up @@ -108,3 +109,5 @@ $ npm test
[coverage-badge]: https://img.shields.io/codecov/c/github/form8ion/ruby-scaffolder?logo=codecov

[slsa-badge]: https://slsa.dev/images/gh-badge-level2.svg

[node-badge]: https://img.shields.io/node/v/@form8ion/ruby-scaffolder?logo=node.js
Loading

0 comments on commit 5e383f7

Please sign in to comment.