Skip to content

Commit caa984b

Browse files
authored
Merge pull request #2 from lmscunha/main
chore: update node version - replace jest for node:test - update copyright - run linter
2 parents 8c6cbad + 2ece1ff commit caa984b

24 files changed

Lines changed: 419 additions & 225 deletions

.github/workflows/build.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,17 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest, windows-latest, macos-latest]
20-
node-version: [lts/*, 17.x, 16.x, 14.x]
20+
node-version: [24.x, 22.x]
2121

2222
runs-on: ${{ matrix.os }}
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2626
- name: Use Node.js ${{ matrix.node-version }}
27-
uses: actions/setup-node@v2
27+
uses: actions/setup-node@v4
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
- run: npm install
31-
# manually install peerdeps for node 14
32-
- run: npm i seneca seneca-promisify seneca-entity @seneca/entity-util
3331
- run: npm run prettier
3432
- run: npm run build --if-present
3533
- run: npm test
36-
37-
- name: Coveralls
38-
uses: coverallsapp/github-action@master
39-
with:
40-
github-token: ${{ secrets.GITHUB_TOKEN }}
41-
path-to-lcov: ./coverage/lcov.info

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Seneca Microservices Framework
3+
Copyright (c) 2026 Seneca Microservices Framework
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

dist-test/basic.messages.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
declare const _default: {
2+
print: boolean
3+
pattern: string
4+
allow: {
5+
missing: boolean
6+
}
7+
calls: never[]
8+
}
9+
export default _default

dist-test/basic.messages.js

Lines changed: 38 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist-test/basic.messages.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist-test/progress.test.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {}

dist-test/progress.test.js

Lines changed: 173 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist-test/progress.test.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Progress.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ declare function Progress(this: any, options: ProgressOptions): {
99
exports: {};
1010
};
1111
export default Progress;
12+
//# sourceMappingURL=Progress.d.ts.map

dist/Progress.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)