Skip to content

Commit

Permalink
ci: Updated CI workflows to run npm ci instead of npm install to …
Browse files Browse the repository at this point in the history
…catch package-lock.json being out of sync (newrelic#276)
  • Loading branch information
bizob2828 authored Mar 12, 2024
1 parent 951610b commit 87b1f07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
run: npm ci
- name: Run Linting
run: npm run lint
- name: Inspect Lockfile
Expand All @@ -37,7 +37,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
run: npm ci
- name: Run Unit Tests
run: npm run unit
- name: Post Unit Test Coverage
Expand All @@ -62,7 +62,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
run: npm ci
- name: Run Versioned Tests
run: npm run versioned
- name: Post Versioned Test Coverage
Expand Down

0 comments on commit 87b1f07

Please sign in to comment.