Skip to content

Commit

Permalink
update CI to Node 18
Browse files Browse the repository at this point in the history
14 is EOL
  • Loading branch information
jhuleatt committed Dec 8, 2023
1 parent abbd20c commit a803c72
Show file tree
Hide file tree
Showing 2 changed files with 14,356 additions and 7,549 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2-beta
with:
node-version: '14'
node-version: '18'
check-latest: true
- name: node_modules cache
id: node_modules_cache
uses: actions/cache@v2
with:
path: ./node_modules
key: ${{ runner.os }}-14-node_modules-${{ hashFiles('package-lock.json') }}
key: ${{ runner.os }}-18-node_modules-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-14-node_modules-
${{ runner.os }}-18-node_modules-
- name: NPM install
if: steps.node_modules_cache.outputs.cache-hit != 'true'
run: npm ci
Expand Down
Loading

0 comments on commit a803c72

Please sign in to comment.