mirror of
https://github.com/joinmarket-webui/jam.git
synced 2026-08-13 12:33:26 +02:00
dev: enable npm config engine-strict (#197)
* dev: enable engine-strict to enforce specified npm/node min versions * dev: update npm min version from v7.0.0 to v8.0.0 * dev: update node min version from v16.0.0 to v16.11.0
This commit is contained in:
parent
6c5e149516
commit
f32e95ac8e
3 changed files with 6 additions and 5 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -14,14 +14,14 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [16]
|
||||
node-version: ['16.11.0']
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
# Setup Node
|
||||
- name: Setup (Node.js ${{ matrix.node-version }})
|
||||
uses: actions/setup-node@v1
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
# Install
|
||||
|
|
|
|||
1
.npmrc
1
.npmrc
|
|
@ -1 +1,2 @@
|
|||
git-tag-version = false
|
||||
engine-strict = true
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
"repository": "git@github.com:joinmarket-webui/joinmarket-webui.git",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=16.0.0",
|
||||
"npm": ">=7.0.0"
|
||||
"node": ">=16.11.0",
|
||||
"npm": ">=8.0.0"
|
||||
},
|
||||
"homepage": ".",
|
||||
"devDependencies": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue