Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove package-lock.json #164

Merged
merged 3 commits into from
Dec 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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