Skip to content

Commit 9e77e2a

Browse files
Merge pull request #471 from spencermountain/dev
Dev
2 parents f5b2400 + a8a3161 commit 9e77e2a

File tree

98 files changed

+32317
-13168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+32317
-13168
lines changed

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [12.x, 15.x]
11+
node-version: [12.x, 15.x, 16.x]
1212

1313
steps:
1414
- uses: actions/checkout@v2
@@ -18,18 +18,9 @@ jobs:
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020

21-
- name: cache dependencies
22-
uses: actions/cache@v1
23-
with:
24-
path: ~/.npm
25-
key: ${{ runner.os }}-npm-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
26-
restore-keys: |
27-
${{ runner.os }}-npm-${{ matrix.node-version }}-
28-
${{ runner.os }}-npm-
29-
3021
- name: npm install, build, lint, and test
3122
run: |
32-
npm ci
23+
npm install
3324
npm run build
3425
npm run lint
3526
npm run test:build

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- uses: actions/[email protected]
1515
with:
16-
node-version: '12.x'
16+
node-version: '16.x'
1717

1818
- uses: actions/cache@v2
1919
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
2929
- name: install
3030
run: |
31-
npm ci
31+
npm i
3232
npm i --no-save eslint
3333
3434
- name: static checks

0 commit comments

Comments
 (0)