Merge branch 'main' into actions-http-client

This commit is contained in:
James M. Greene
2023-03-07 22:52:29 -06:00
committed by GitHub
5 changed files with 623 additions and 601 deletions

View File

@@ -3,7 +3,7 @@
# `index.js` is the code that will run. # `index.js` is the code that will run.
# For our project, we generate this file using `ncc` # For our project, we generate this file using `ncc`
# We need to make sure the checked-in `index.js` actually matches what we expect it to be. # We need to make sure the checked-in `index.js` actually matches what we expect it to be.
name: Check dist/ name: Check distributables
on: on:
push: push:

View File

@@ -15,7 +15,7 @@ concurrency:
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:
test: format:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout

View File

@@ -15,7 +15,7 @@ concurrency:
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:
test: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout

1214
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -11,9 +11,9 @@
"devDependencies": { "devDependencies": {
"@vercel/ncc": "^0.31.1", "@vercel/ncc": "^0.31.1",
"eslint": "^8.35.0", "eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0", "eslint-config-prettier": "^8.7.0",
"eslint-plugin-github": "^4.6.1", "eslint-plugin-github": "^4.6.1",
"jest": "^29.4.3", "jest": "^29.5.0",
"nock": "^13.3.0", "nock": "^13.3.0",
"prettier": "^2.8.4" "prettier": "^2.8.4"
}, },