Skip to content

Commit 04dc1d4

Browse files
committed
🔀 Merge branch 'devel' into release
Signed-off-by: kei-g <km.8k6ce+github@gmail.com>
2 parents 9c7f171 + 06a26e0 commit 04dc1d4

File tree

7 files changed

+110
-7
lines changed

7 files changed

+110
-7
lines changed

.cspell.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "0.2",
3+
"words": [
4+
"asynciterable",
5+
"autobuild",
6+
"codeql",
7+
"devel",
8+
"esbuild",
9+
"linebreak",
10+
"npmignore",
11+
"outfile",
12+
"postpublish",
13+
"tada"
14+
]
15+
}

.github/workflows/codeql.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
jobs:
2+
analyze:
3+
name: Analyze
4+
permissions:
5+
actions: read
6+
contents: read
7+
security-events: write
8+
runs-on: ubuntu-latest
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
language:
13+
- 'javascript'
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v3
17+
with:
18+
fetch-depth: 1
19+
- name: Initialize CodeQL
20+
uses: github/codeql-action/init@v2
21+
with:
22+
languages: ${{ matrix.language }}
23+
- name: Autobuild
24+
uses: github/codeql-action/autobuild@v2
25+
- name: Perform CodeQL Analysis
26+
uses: github/codeql-action/analyze@v2
27+
name: CodeQL
28+
on:
29+
pull_request:
30+
branches:
31+
- devel
32+
- main
33+
- release
34+
push:
35+
branches:
36+
- devel
37+
- main
38+
- release
39+
schedule:
40+
- cron: '19 13 * * 3'

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
**/*.d.ts
22
**/*.js
33
**/.nyc_output/
4-
**/.vscode/
54
**/coverage/
65
**/lib/
76
**/node_modules/

.vscode/extensions.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"recommendations": [
3+
"DavidAnson.vscode-markdownlint",
4+
"EditorConfig.EditorConfig",
5+
"bierner.markdown-emoji",
6+
"christian-kohler.npm-intellisense",
7+
"codezombiech.gitignore",
8+
"kisstkondoros.vscode-codemetrics",
9+
"streetsidesoftware.code-spell-checker"
10+
]
11+
}

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"files.associations": {
3+
"**/LICENSE": "plaintext",
4+
},
5+
"files.exclude": {
6+
"node_modules": true,
7+
},
8+
}

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# ChangeLogs
22

3+
## Version 1.0.11
4+
5+
- :green_heart: CI chore
6+
- A Farewell to Travis
7+
- CodeQL is installed
8+
- links on CI status badges are related specific branches
9+
- looser Node.js versions are specified
10+
- open-pull-requests-limit is increased up to 16
11+
- workflows are separated
12+
- :hear_no_evil: CONTRIBUTING.md is added to .npmignore
13+
- :arrow_up: Packages for development are bumped
14+
- `@types/chai` is bumped from 4.3.0 to 4.3.7
15+
- `@types/mocha` is bumped from 9.0.0 to 10.0.1
16+
- `@types/node` is bumped from 16.11.12 to 18.11.17
17+
- `@typescript-eslint/eslint-plugin` is bumped from 5.6.0 to 5.47.0
18+
- `@typescript-eslint/parser` is bumped from 5.6.0 to 5.47.0
19+
- `chai` is bumped from 4.3.4 to 4.3.7
20+
- `esbuild` is bumped from 0.14.2 to 0.16.10
21+
- `eslint` is bumped from 8.4.1 to 8.30.0
22+
- `mocha` is bumped from 9.1.3 to 10.2.0
23+
- `ts-node` is bumped from 10.4.0 to 10.9.1
24+
- `typescript` is bumped from 4.5.3 to 4.9.4
25+
- :pencil2: Typo on README.md is fixed
26+
327
## Version 1.0.10
428

529
- :wrench: 'clean' is made to be invoked after 'publish'

README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
## CI Status
88

9-
| Branches \ Targets | Build | Coverage | Example |
10-
| ---- | ---- | ---- | ----
11-
| devel | [![GitHub CI (Build)][github-devel-build-image]][github-devel-build-url] | [![GitHub CI (Coverage)][github-devel-coverage-image]][github-devel-coverage-url] | [![GitHub CI (Example)][github-devel-example-image]][github-devel-example-url] |
12-
| main | [![GitHub CI (Build)][github-main-build-image]][github-main-build-url] | [![GitHub CI (Coverage)][github-main-coverage-image]][github-main-coverage-url] | [![GitHub CI (Example)][github-main-example-image]][github-main-example-url] |
13-
| release | [![GitHub CI (Build)][github-release-build-image]][github-release-build-url] | [![GitHub CI (Coverage)][github-release-coverage-image]][github-release-coverage-url] | [![GitHub CI (Example)][github-release-example-image]][github-release-example-url] |
9+
| Branches \ Targets | Build | CodeQL | Coverage | Example |
10+
| ---- | ---- | ---- | ---- | ----
11+
| devel | [![GitHub CI (Build)][github-devel-build-image]][github-devel-build-url] | [![GitHub CI (CodeQL)][github-devel-codeql-image]][github-devel-codeql-url] | [![GitHub CI (Coverage)][github-devel-coverage-image]][github-devel-coverage-url] | [![GitHub CI (Example)][github-devel-example-image]][github-devel-example-url] |
12+
| main | [![GitHub CI (Build)][github-main-build-image]][github-main-build-url] | [![GitHub CI (CodeQL)][github-main-codeql-image]][github-main-codeql-url] | [![GitHub CI (Coverage)][github-main-coverage-image]][github-main-coverage-url] | [![GitHub CI (Example)][github-main-example-image]][github-main-example-url] |
13+
| release | [![GitHub CI (Build)][github-release-build-image]][github-release-build-url] | [![GitHub CI (CodeQL)][github-release-codeql-image]][github-release-codeql-url] | [![GitHub CI (Coverage)][github-release-coverage-image]][github-release-coverage-url] | [![GitHub CI (Example)][github-release-example-image]][github-release-example-url] |
1414

1515
## Installation
1616

@@ -68,7 +68,7 @@ async function example(): Promise<void> {
6868
example()
6969
```
7070

71-
## Lincense
71+
## License
7272

7373
The scripts and documentation in this project are released under the [BSD-3-Clause License](https://github.com/kei-g/async-iterable-queue/blob/main/LICENSE)
7474

@@ -84,18 +84,24 @@ Contributions are welcome! See [Contributor's Guide](https://github.com/kei-g/as
8484
[dependency-url]:https://npmjs.com/package/async-iterable-queue?activeTab=dependencies
8585
[github-devel-build-image]:https://github.com/kei-g/async-iterable-queue/actions/workflows/build.yml/badge.svg?branch=devel
8686
[github-devel-build-url]:https://github.com/kei-g/async-iterable-queue/actions/workflows/build.yml?query=branch%3Adevel
87+
[github-devel-codeql-image]:https://github.com/kei-g/async-iterable-queue/actions/workflows/codeql.yml/badge.svg?branch=devel
88+
[github-devel-codeql-url]:https://github.com/kei-g/async-iterable-queue/actions/workflows/codeql.yml?query=branch%3Adevel
8789
[github-devel-coverage-image]:https://github.com/kei-g/async-iterable-queue/actions/workflows/coverage.yml/badge.svg?branch=devel
8890
[github-devel-coverage-url]:https://github.com/kei-g/async-iterable-queue/actions/workflows/coverage.yml?query=branch%3Adevel
8991
[github-devel-example-image]:https://github.com/kei-g/async-iterable-queue/actions/workflows/example.yml/badge.svg?branch=devel
9092
[github-devel-example-url]:https://github.com/kei-g/async-iterable-queue/actions/workflows/example.yml?query=branch%3Adevel
9193
[github-main-build-image]:https://github.com/kei-g/async-iterable-queue/actions/workflows/build.yml/badge.svg?branch=main
9294
[github-main-build-url]:https://github.com/kei-g/async-iterable-queue/actions/workflows/build.yml?query=branch%3Amain
95+
[github-main-codeql-image]:https://github.com/kei-g/async-iterable-queue/actions/workflows/codeql.yml/badge.svg?branch=main
96+
[github-main-codeql-url]:https://github.com/kei-g/async-iterable-queue/actions/workflows/codeql.yml?query=branch%3Amain
9397
[github-main-coverage-image]:https://github.com/kei-g/async-iterable-queue/actions/workflows/coverage.yml/badge.svg?branch=main
9498
[github-main-coverage-url]:https://github.com/kei-g/async-iterable-queue/actions/workflows/coverage.yml?query=branch%3Amain
9599
[github-main-example-image]:https://github.com/kei-g/async-iterable-queue/actions/workflows/example.yml/badge.svg?branch=main
96100
[github-main-example-url]:https://github.com/kei-g/async-iterable-queue/actions/workflows/example.yml?query=branch%3Amain
97101
[github-release-build-image]:https://github.com/kei-g/async-iterable-queue/actions/workflows/build.yml/badge.svg?branch=release
98102
[github-release-build-url]:https://github.com/kei-g/async-iterable-queue/actions/workflows/build.yml?query=branch%3Arelease
103+
[github-release-codeql-image]:https://github.com/kei-g/async-iterable-queue/actions/workflows/codeql.yml/badge.svg?branch=release
104+
[github-release-codeql-url]:https://github.com/kei-g/async-iterable-queue/actions/workflows/codeql.yml?query=branch%3Arelease
99105
[github-release-coverage-image]:https://github.com/kei-g/async-iterable-queue/actions/workflows/coverage.yml/badge.svg?branch=release
100106
[github-release-coverage-url]:https://github.com/kei-g/async-iterable-queue/actions/workflows/coverage.yml?query=branch%3Arelease
101107
[github-release-example-image]:https://github.com/kei-g/async-iterable-queue/actions/workflows/example.yml/badge.svg?branch=release

0 commit comments

Comments
 (0)