Skip to content

Commit

Permalink
Merge pull request #874 from form8ion/beta
Browse files Browse the repository at this point in the history
  • Loading branch information
travi authored Aug 30, 2023
2 parents 6c2ce67 + f92712a commit 0d67af1
Show file tree
Hide file tree
Showing 21 changed files with 7,721 additions and 5,797 deletions.
1 change: 0 additions & 1 deletion .babelrc

This file was deleted.

File renamed without changes.
5 changes: 5 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
extends:
- '@form8ion'

rules:
import/extensions:
- error
- ignorePackages
19 changes: 19 additions & 0 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,24 @@ 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 test
verify:
runs-on: ubuntu-latest
steps:
Expand All @@ -28,6 +46,7 @@ jobs:
release:
needs:
- verify
- verify-matrix
permissions:
contents: write
id-token: write
Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ on a project
[![npm][npm-badge]][npm-link]
[![Try @form8ion/renovate-scaffolder on RunKit][runkit-badge]][runkit-link]
[![MIT license][license-badge]][license-link]
![node][node-badge]

<!--consumer-badges end -->

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

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

[node-badge]: https://img.shields.io/node/v/@form8ion/renovate-scaffolder?logo=node.js
2 changes: 1 addition & 1 deletion example.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// #### Import
// remark-usage-ignore-next
import stubbedFs from 'mock-fs';
import {lift, predicate as projectUsesRenovate, scaffold} from './lib/index.cjs';
import {lift, predicate as projectUsesRenovate, scaffold} from './lib/index.js';

// remark-usage-ignore-next
stubbedFs();
Expand Down
Loading

0 comments on commit 0d67af1

Please sign in to comment.