Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
- name: Install Dependencies
run: npm ci --ignore-scripts
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
- name: Install Dependencies
run: npm ci --ignore-scripts
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
6 changes: 6 additions & 0 deletions check-imports/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: Check Imports
description: Ensure imported packages are allowed for use.
runs:
using: node18
pre: '../setup.mjs'
main: ../build/check-imports/index.js
2 changes: 1 addition & 1 deletion coverage-reporter/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ inputs:
description: Title to add to the comment
required: false
runs:
using: node16
using: node18
pre: '../setup.mjs'
main: ../build/coverage-reporter/index.js
57 changes: 23 additions & 34 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,16 @@
"@actions/core": "^1.9.1",
"@actions/github": "^5.1.0",
"@octokit/rest": "^19.0.4",
"debug": "^4.3.4"
"debug": "^4.3.4",
"semver": "^7.3.8"
},
"devDependencies": {
"@checkdigit/eslint-config": "^7.2.2",
"@checkdigit/jest-config": "^1.0.1",
"@checkdigit/prettier-config": "^3.0.0",
"@checkdigit/typescript-config": "^3.1.0",
"@types/debug": "^4.1.7",
"@types/semver": "^7.3.13",
"@types/uuid": "^8.3.4",
"nock": "^13.2.9",
"rimraf": "^3.0.2",
Expand Down
2 changes: 1 addition & 1 deletion publish-beta/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ inputs:
description: Publish beta command to run
required: true
runs:
using: node16
using: node18
pre: '../setup.mjs'
main: ../build/publish-beta/index.js
Loading