Skip to content

Commit

Permalink
Merge pull request #164 from byu-oit/remove-package-lock
Browse files Browse the repository at this point in the history
Remove package-lock.json
  • Loading branch information
GaryGSC committed Dec 14, 2021
2 parents ce0198e + dc447d3 commit e81428a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 13,091 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,6 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true

audit:
name: Audit Module
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ env.node_version }}

- name: npm audit
run: npm audit --audit-level=critical

lint:
name: Lint Module
runs-on: ubuntu-latest
Expand All @@ -82,7 +68,7 @@ jobs:
draft_release:
name: Draft Release
runs-on: ubuntu-latest
needs: [test, audit, lint]
needs: [test, lint]
steps:
- uses: actions/checkout@v2

Expand Down
16 changes: 1 addition & 15 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,20 +61,6 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true

audit:
name: Audit Module
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ env.node_version }}

- name: npm audit
run: npm audit --audit-level=critical

lint:
name: Lint Module
runs-on: ubuntu-latest
Expand All @@ -93,7 +79,7 @@ jobs:
run: npm run lint

publish:
needs: [env, test, audit, lint] # Wait for checks to finish before publishing
needs: [env, test, lint] # Wait for checks to finish before publishing
name: Publish node package
runs-on: ubuntu-latest
strategy:
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
Loading

0 comments on commit e81428a

Please sign in to comment.