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: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,6 @@ module.exports = {
'no-return-await': 'off', // this does not help anything and actually leads to bugs if we subsequently wrap the return in a try catch without remembering to _then_ add await
'@typescript-eslint/return-await': 'off',
'@typescript-eslint/no-unsafe-declaration-merging': 'off', // dobjs are built off of this
'@typescript-eslint/default-param-last': 'off', // interferes with input vs context
},
};
2 changes: 1 addition & 1 deletion .github/workflows/.install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
npm:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
outputs:
node-modules-cache-key: ${{ steps.cache.outputs.cache-primary-key }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/.publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: ./.github/workflows/.install.yml

publish:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [install]
steps:
- name: checkout
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

# run tests in parallel
test-commits:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [install]
steps:
- name: checkout
Expand All @@ -49,7 +49,7 @@ jobs:
run: npm run test:commits

test-types:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [install]
steps:
- name: checkout
Expand All @@ -70,13 +70,13 @@ jobs:
run: npm run test:types

test-format:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [install]
steps:
- name: checkout
uses: actions/checkout@v3

- name: set node-version
- name: set node version
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
Expand All @@ -91,7 +91,7 @@ jobs:
run: npm run test:format

test-lint:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [install]
steps:
- name: checkout
Expand All @@ -112,7 +112,7 @@ jobs:
run: npm run test:lint

test-unit:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [install]
steps:
- name: checkout
Expand All @@ -133,7 +133,7 @@ jobs:
run: THOROUGH=true npm run test:unit

test-integration:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [install]
steps:
- name: checkout
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
run: THOROUGH=true npm run test:integration

test-acceptance-locally:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [install]
steps:
- name: checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
release-please:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: google-github-actions/release-please-action@v3
with:
Expand Down
21 changes: 21 additions & 0 deletions license.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 ehmpathy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading
Loading