Skip to content

Commit

Permalink
Merge branch 'main' into joshhale-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
lseppala authored Feb 23, 2023
2 parents 67380a2 + c3d41ec commit 5bdb9c6
Show file tree
Hide file tree
Showing 6 changed files with 1,694 additions and 10,999 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/dependency-submission-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ jobs:
- name: 'Checkout Repository'
uses: actions/checkout@v3
- uses: actions/setup-node@v3
# As of 2023-02-22, the ubuntu-latest image uses npm v8.3.1. This version
# has a bug that prevents loading dependency-submission-toolkit in the
# 'example/' project. npm v8.4.1 (same version in Codespace created on
# same date) is known to work. Not pinned to latest to avoid
# reproducibility issues.
- run: npm install [email protected] -g
- name: Install NPM dependencies
run: npm ci
- name: Run all NPM build/test actions
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# As of 2023-02-22, the ubuntu-latest image uses npm v8.3.1. This version
# has a bug that prevents loading dependency-submission-toolkit in the
# 'example/' project. npm v8.4.1 (same version in Codespace created on
# same date) is known to work. Not pinned to latest to avoid
# reproducibility issues.
- run: npm install [email protected] -g
- name: Install NPM dependencies
run: npm ci
- run: npm install
- name: Run all NPM build/test actions
run: npm rebuild && npm run all
4 changes: 2 additions & 2 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "npm-dependency-submission-example",
"name": "@github/npm-dependency-submission-example",
"version": "1.0.0",
"description": "Example using the Dependency Submission Toolkit and npm list",
"description": "[UNPUBLISHED PACKAGE!] Example using the Dependency Submission Toolkit and npm list",
"main": "index.ts",
"dependencies": {
"@github/dependency-submission-toolkit": "file:../",
Expand Down
Loading

0 comments on commit 5bdb9c6

Please sign in to comment.