Skip to content
This repository was archived by the owner on Apr 3, 2024. It is now read-only.

Commit 59c09a1

Browse files
author
Benjamin E. Coe
authored
build: update to latest build files (#929)
1 parent 1e77a61 commit 59c09a1

File tree

24 files changed

+631
-52
lines changed

24 files changed

+631
-52
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ jobs:
1616
with:
1717
node-version: ${{ matrix.node }}
1818
- run: node --version
19+
# The first installation step ensures that all of our production
20+
# dependencies work on the given Node.js version, this helps us find
21+
# dependencies that don't match our engines field:
22+
- run: npm install --production --engine-strict --ignore-scripts --no-package-lock
23+
# Clean up the production install, before installing dev/production:
24+
- run: rm -rf node_modules
1925
- run: npm install
2026
- run: npm test
2127
- name: coverage
@@ -29,7 +35,7 @@ jobs:
2935
- uses: actions/checkout@v2
3036
- uses: actions/setup-node@v1
3137
with:
32-
node-version: 12
38+
node-version: 13
3339
- run: npm install
3440
- run: npm test
3541
- name: coverage
@@ -43,7 +49,7 @@ jobs:
4349
- uses: actions/checkout@v2
4450
- uses: actions/setup-node@v1
4551
with:
46-
node-version: 12
52+
node-version: 13
4753
- run: npm install
4854
- run: npm run lint
4955
docs:
@@ -52,6 +58,6 @@ jobs:
5258
- uses: actions/checkout@v2
5359
- uses: actions/setup-node@v1
5460
with:
55-
node-version: 12
61+
node-version: 13
5662
- run: npm install
5763
- run: npm run docs-test

.kokoro/common.cfg

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/continuous/node10/common.cfg

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/continuous/node12/common.cfg

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/docs.sh

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/lint.sh

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/populate-secrets.sh

Lines changed: 49 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/presubmit/node10/common.cfg

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/presubmit/node12/common.cfg

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/publish.sh

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)