Skip to content

Commit

Permalink
enforce node and npm versions (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
djcooke authored Feb 27, 2024
1 parent 4317803 commit 6cfa0bd
Show file tree
Hide file tree
Showing 5 changed files with 1,026 additions and 380 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
distribution: "temurin"
java-version: "17"
cache: "maven"
- uses: actions/setup-node@v3
with:
node-version: 17
cache: 'npm'
node-version: 20
cache: "npm"
- run: mvn --batch-mode package
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
engine-strict=true

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

* Java 17 JDK
* Maven 3.8+
* Node 17.3+
* NPM 8.3+
* Node 20+
* NPM 9+

## Configuration

Expand Down
Loading

0 comments on commit 6cfa0bd

Please sign in to comment.