Skip to content

Commit b78be5d

Browse files
authoredJan 11, 2021
build: add the lock file back (#242)
1 parent 71d46aa commit b78be5d

File tree

5 files changed

+9399
-11
lines changed

5 files changed

+9399
-11
lines changed
 

‎.github/workflows/ci.yaml

+6-7
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ on:
55
pull_request:
66
name: ci
77
env:
8-
#FORCE_COLOR: 2 # Enable this later
9-
NODE: 12.x
8+
NODE: 12
109
jobs:
1110
test:
1211
runs-on: ubuntu-latest
@@ -19,7 +18,7 @@ jobs:
1918
- uses: actions/setup-node@v2
2019
with:
2120
node-version: ${{ matrix.node }}
22-
- run: npm install
21+
- run: npm ci
2322
- run: npm test
2423
- uses: codecov/codecov-action@v1
2524
with:
@@ -31,7 +30,7 @@ jobs:
3130
- uses: actions/setup-node@v2
3231
with:
3332
node-version: ${{ env.NODE }}
34-
- run: npm install
33+
- run: npm ci
3534
- run: npm test
3635
lint:
3736
runs-on: ubuntu-latest
@@ -40,7 +39,7 @@ jobs:
4039
- uses: actions/setup-node@v2
4140
with:
4241
node-version: ${{ env.NODE }}
43-
- run: npm install
42+
- run: npm ci
4443
- run: npm run lint
4544
docs:
4645
runs-on: ubuntu-latest
@@ -49,7 +48,7 @@ jobs:
4948
- uses: actions/setup-node@v2
5049
with:
5150
node-version: ${{ env.NODE }}
52-
- run: npm install
51+
- run: npm ci
5352
- run: npm run docs-test
5453
release:
5554
if: github.ref == 'refs/heads/master'
@@ -60,7 +59,7 @@ jobs:
6059
- uses: actions/setup-node@v2
6160
with:
6261
node-version: ${{ env.NODE }}
63-
- run: npm install
62+
- run: npm ci
6463
- run: npm run compile
6564
- run: npm run build-binaries
6665
- run: npx semantic-release

‎.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
node_modules/
2-
package-lock.json
32
.nyc_output
43
build/
54
coverage

‎.npmrc

-1
This file was deleted.

‎package-lock.json

+9,392
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎renovate.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": [
3-
"config:base",
4-
"docker:disable"
3+
"config:base"
54
],
65
"pinVersions": false,
76
"rebaseStalePrs": true

0 commit comments

Comments
 (0)
Please sign in to comment.