Skip to content

Commit

Permalink
fix(deps-dev): updated dev dependencies and dropped support for Node 10
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-molak committed Dec 20, 2021
1 parent 342de84 commit 324d60c
Show file tree
Hide file tree
Showing 4 changed files with 12,581 additions and 934 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [ 10.x, 12.x, 14.x ]
node-version: [ 12.x, 14.x, 16.x ]

steps:
- uses: actions/checkout@v2
Expand All @@ -34,7 +34,7 @@ jobs:
CI: true

- uses: actions/upload-artifact@v2
if: matrix.node-version == '14.x'
if: matrix.node-version == '16.x'
with:
retention-days: 1
name: test-reports
Expand All @@ -48,10 +48,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 16.x
- uses: actions/cache@v2
with:
path: ~/.npm
Expand All @@ -72,10 +72,10 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 16.x
- uses: actions/cache@v2
with:
path: ~/.npm
Expand All @@ -96,10 +96,10 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 16.x
- uses: actions/cache@v2
with:
path: ~/.npm
Expand All @@ -122,10 +122,10 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 16.x
- uses: actions/cache@v2
with:
path: ~/.npm
Expand Down
Loading

0 comments on commit 324d60c

Please sign in to comment.