Skip to content

Commit

Permalink
Merge pull request #327 from dpogue/cleanup
Browse files Browse the repository at this point in the history
refactor!: Cleanup & dependency modernization
  • Loading branch information
dpogue authored Nov 6, 2024
2 parents 53ac7ad + aa2de5d commit c82d1db
Show file tree
Hide file tree
Showing 22 changed files with 2,278 additions and 2,548 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@

name: Node CI

on: [push, pull_request]
on:
push:
branches-ignore:
- 'dependabot/*'
pull_request:
branches:
- '*'

jobs:
test:
Expand All @@ -27,22 +33,22 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [20.x, 22.x]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: set up JDK 1.8
uses: actions/setup-java@v3
- name: set up JDK
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '8'
distribution: 'temurin'
java-version: '17'

- name: Environment Information
run: |
Expand Down
Loading

0 comments on commit c82d1db

Please sign in to comment.