Skip to content

Commit d115e63

Browse files
committed
Merge remote-tracking branch 'origin/master' into renovate/configure
2 parents 6029e73 + 0416f76 commit d115e63

File tree

1,307 files changed

+81155
-44686
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,307 files changed

+81155
-44686
lines changed

.circleci/config.yml

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

.git-cz.json

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

.github/workflows/ci.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Node.js CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
node-version: [18.x, 20.x]
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
- run: yarn install --frozen-lockfile
25+
- run: yarn build:all
26+
- run: yarn lint
27+
- run: yarn prettier:check
28+
- run: yarn test:ci --ci
29+
- run: yarn test:cli:pointer
30+
- run: yarn test:cli:patch
31+
- run: yarn test:cli:pack
32+
- run: PORT=9999 yarn test:reactive-rpc
33+
- run: yarn demo:json-patch
34+
- run: yarn demo:json-pointer

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ dist
107107

108108
# Stores VSCode versions used for testing VSCode extensions
109109
.vscode-test
110+
.vscode
110111

111112
# yarn v2
112113
.yarn/cache
@@ -123,3 +124,6 @@ esm/
123124
typedocs/
124125

125126
.DS_Store
127+
out.bin
128+
129+
/gh-pages/

.vscode/settings.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
{
2-
"editor.tabSize": 2
3-
}
2+
"editor.tabSize": 2,
3+
"typescript.tsdk": "node_modules/typescript/lib",
4+
"workbench.colorCustomizations": {
5+
"titleBar.activeBackground": "#333",
6+
"titleBar.activeForeground": "#ddd",
7+
"titleBar.inactiveBackground": "#222",
8+
"titleBar.inactiveForeground": "#aaa"
9+
},
10+
}

0 commit comments

Comments
 (0)