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
1 change: 0 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
},
"rules": {
"no-console": "off",
"import/no-unresolved": "off",
"no-param-reassign": "off",
"filenames/match-regex": "off",
"lines-between-class-members": "off",
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ jobs:
- uses: extractions/setup-just@v4
- uses: actions/setup-node@v7
with:
node-version: 24
node-version: 26
- run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 just install build test
# node-compatibility checks that the build version of the app can be imported
# and used on older versions of node
node-compatibility:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 19.x, 20.x, 21.x, 22.x, 23.x, 24.x, 25.x, 26.x]
node-version: [18.x, 20.x, 22.x, 24.x, 26.x]
steps:
- uses: actions/checkout@v7
- uses: extractions/setup-just@v4
- uses: actions/setup-node@v7
with:
node-version: 24
node-version: 26
- run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 just install build
- uses: actions/setup-node@v7
with:
Expand All @@ -43,7 +43,7 @@ jobs:
- uses: extractions/setup-just@v4
- uses: actions/setup-node@v7
with:
node-version: 24
node-version: 26
- run: just install typescript
lint:
runs-on: ubuntu-latest
Expand All @@ -52,7 +52,7 @@ jobs:
- uses: extractions/setup-just@v4
- uses: actions/setup-node@v7
with:
node-version: 24
node-version: 26
- run: just install build lint
coverage:
runs-on: ubuntu-latest
Expand All @@ -61,7 +61,7 @@ jobs:
- uses: extractions/setup-just@v4
- uses: actions/setup-node@v7
with:
node-version: 24
node-version: 26
- run: just install build
- run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 just coverage
- name: Coverage
Expand All @@ -77,7 +77,7 @@ jobs:
- uses: extractions/setup-just@v4
- uses: actions/setup-node@v7
with:
node-version: 24
node-version: 26
- name: Install Dependencies
run: just install
- name: Generate Docs
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: extractions/setup-just@v3
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: 24
node-version: 26
registry-url: 'https://registry.npmjs.org'
- name: Publish Package
run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 just install install-styleguide publish
Expand Down
2 changes: 1 addition & 1 deletion audit-ci.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"$schema": "https://github.com/IBM/audit-ci/raw/main/docs/schema.json",
// Only fail the audit if there are critical vulnerabilities.
"critical": true,
"allowlist": [],
"allowlist": ["GHSA-4mjr-xmp4-gh2g", "GHSA-x5fp-wj9c-mxmx"],
}
Loading