Skip to content
This repository was archived by the owner on Nov 11, 2024. It is now read-only.

Commit 41d9424

Browse files
committed
build(deps): update latest
1 parent 41a0f18 commit 41d9424

File tree

11 files changed

+2057
-1201
lines changed

11 files changed

+2057
-1201
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- Please first discuss the change you wish to make via issue before making a change. It might avoid a waste of your time. -->
22

3-
## What changes this PR introduce?
3+
# What changes this PR introduce?
44

55
## List any relevant issue numbers
66

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
build:
1111
runs-on: 'ubuntu-latest'
1212
steps:
13-
- uses: 'actions/[email protected].0'
13+
- uses: 'actions/[email protected].2'
1414

15-
- name: 'Use Node.js'
15+
- name: 'Setup Node.js'
1616
uses: 'actions/[email protected]'
1717
with:
1818
node-version: 'lts/*'
1919
cache: 'npm'
2020

21-
- name: 'Install'
22-
run: 'npm install'
21+
- name: 'Install dependencies'
22+
run: 'npm clean-install'
2323

2424
- name: 'Build'
2525
run: 'npm run build'

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
lint:
1111
runs-on: 'ubuntu-latest'
1212
steps:
13-
- uses: 'actions/[email protected].0'
13+
- uses: 'actions/[email protected].2'
1414

15-
- name: 'Use Node.js'
15+
- name: 'Setup Node.js'
1616
uses: 'actions/[email protected]'
1717
with:
1818
node-version: 'lts/*'
1919
cache: 'npm'
2020

21-
- name: 'Install'
22-
run: 'npm install'
21+
- name: 'Install dependencies'
22+
run: 'npm clean-install'
2323

2424
- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
2525
- run: 'npm run lint:editorconfig'

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ jobs:
88
release:
99
runs-on: 'ubuntu-latest'
1010
steps:
11-
- uses: 'actions/[email protected].0'
11+
- uses: 'actions/[email protected].2'
1212

13-
- name: 'Use Node.js'
13+
- name: 'Setup Node.js'
1414
uses: 'actions/[email protected]'
1515
with:
1616
node-version: 'lts/*'
1717
cache: 'npm'
1818

19-
- name: 'Install'
20-
run: 'npm install'
19+
- name: 'Install dependencies'
20+
run: 'npm clean-install'
2121

2222
- name: 'Build Package'
2323
run: 'npm run build'

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
test:
1111
runs-on: 'ubuntu-latest'
1212
steps:
13-
- uses: 'actions/[email protected].0'
13+
- uses: 'actions/[email protected].2'
1414

15-
- name: 'Use Node.js'
15+
- name: 'Setup Node.js'
1616
uses: 'actions/[email protected]'
1717
with:
1818
node-version: 'lts/*'
1919
cache: 'npm'
2020

21-
- name: 'Install'
22-
run: 'npm install'
21+
- name: 'Install dependencies'
22+
run: 'npm clean-install'
2323

2424
- name: 'Build'
2525
run: 'npm run build'

.markdownlint-cli2.jsonc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"config": {
3+
"extends": "markdownlint/style/prettier",
4+
"relative-links": true,
5+
"default": true,
6+
"MD033": false
7+
},
28
"globs": ["**/*.{md,mdx}"],
39
"ignores": ["**/node_modules"],
410
"customRules": ["markdownlint-rule-relative-links"]

.markdownlint.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
63+
6464
All complaints will be reviewed and investigated promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the

CONTRIBUTING.md

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -29,26 +29,4 @@ If you're adding new features to **Thream/socketio-jwt**, please include tests.
2929

3030
## Commits
3131

32-
The commit message guidelines respect [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/master/%40commitlint/config-conventional) and [Semantic Versioning](https://semver.org/) for releases.
33-
34-
### Types
35-
36-
Types define which kind of changes you made to the project.
37-
38-
| Types | Description |
39-
| -------- | ------------------------------------------------------------------------------------------------------------ |
40-
| feat | A new feature. |
41-
| fix | A bug fix. |
42-
| docs | Documentation only changes. |
43-
| style | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc). |
44-
| refactor | A code change that neither fixes a bug nor adds a feature. |
45-
| perf | A code change that improves performance. |
46-
| test | Adding missing tests or correcting existing tests. |
47-
| build | Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm). |
48-
| ci | Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs). |
49-
| chore | Other changes that don't modify src or test files. |
50-
| revert | Reverts a previous commit. |
51-
52-
### Scopes
53-
54-
Scopes define what part of the code changed.
32+
The commit message guidelines adheres to [Conventional Commits](https://www.conventionalcommits.org/) and [Semantic Versioning](https://semver.org/) for releases.

0 commit comments

Comments
 (0)