Skip to content

Commit

Permalink
ci: add/deprecate nodejs versions
Browse files Browse the repository at this point in the history
  • Loading branch information
floydpink committed Jan 16, 2023
1 parent 75ee7ae commit 7db868e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ jobs:
name: Continuous Integration/Continuous Deployment
strategy:
matrix:
node-version: [12.x, 14.x, 15.x, 16.x]
node-version: [14.x, 15.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install Global Dependencies
run: npm install -g [email protected] grunt-cli istanbul npm

- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down

0 comments on commit 7db868e

Please sign in to comment.