Skip to content

Commit

Permalink
chore: Added Node 22 to CI (newrelic#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
bizob2828 authored Jun 26, 2024
1 parent 7761a47 commit ed7daa2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 19,777 deletions.
10 changes: 5 additions & 5 deletions merged/nextjs/.github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
run: npm install
- name: Run Linting
run: npm run lint
- name: Inspect Lockfile
Expand All @@ -32,7 +32,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [16.x, 18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v3
Expand All @@ -41,7 +41,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
run: npm install
- name: Run Unit Tests
run: npm run unit
- name: Post Unit Test Coverage
Expand All @@ -57,7 +57,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [16.x, 18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v3
Expand All @@ -66,7 +66,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
run: npm install
- name: Run Versioned Tests
run: npm run versioned
- name: Post Versioned Test Coverage
Expand Down
1 change: 1 addition & 0 deletions merged/nextjs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ build/Release
# Dependency directories
node_modules/
jspm_packages/
package-lock.json

# Typescript v1 declaration files
typings/
Expand Down
1 change: 1 addition & 0 deletions merged/nextjs/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
Loading

0 comments on commit ed7daa2

Please sign in to comment.