mirror of https://github.com/node-red/node-red.git
Merge pull request #5426 from dimitrieh/fix/reproducible-dependency-chain
Add package-lock.json for reproducible dependency chainspull/5428/head
commit
62d67a76f1
|
|
@ -24,7 +24,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: npm install
|
run: npm ci
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
npm run test
|
npm run test
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,6 @@ docs
|
||||||
.vscode
|
.vscode
|
||||||
.nyc_output
|
.nyc_output
|
||||||
sync.ffs_db
|
sync.ffs_db
|
||||||
package-lock.json
|
|
||||||
.editorconfig
|
.editorconfig
|
||||||
test/resources/50-file-test-file.txt
|
test/resources/50-file-test-file.txt
|
||||||
test/unit/@node-red/runtime/lib/nodes/.testUserHome
|
test/unit/@node-red/runtime/lib/nodes/.testUserHome
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@ If you want to run the latest code from git, here's how to get started:
|
||||||
|
|
||||||
2. Install the node-red dependencies
|
2. Install the node-red dependencies
|
||||||
|
|
||||||
npm install
|
npm ci
|
||||||
|
|
||||||
3. Build the code
|
3. Build the code
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue