Skip to content

Commit

Permalink
Merge pull request #2363 from kuzzleio/2.19.0-proposal
Browse files Browse the repository at this point in the history
Release 2.19.0
  • Loading branch information
Shiranuit authored Jun 22, 2022
2 parents e9c3b95 + 179cd1a commit 18134d9
Show file tree
Hide file tree
Showing 80 changed files with 13,855 additions and 926 deletions.
2 changes: 1 addition & 1 deletion .ci/scripts/run-test-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fi
echo "Testing Kuzzle against node v$NODE_VERSION"

echo "Installing dependencies..."
npm install --unsafe-perm
npm install

if [ "$REBUILD" == "true" ];
then
Expand Down
9 changes: 5 additions & 4 deletions .ci/test-cluster.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
version: '3.4'

x-kuzzle-config: &kuzzle-config
image: kuzzleio/core-dev:2
command: >
sh -c "n $NODE_VERSION &&
node ./docker/scripts/start-kuzzle-dev.js --enable-plugins kuzzle-plugin-cluster,functional-test-plugin"
image: kuzzleio/kuzzle-runner:${NODE_VERSION:-16}
command: >
bash -c "
node ./docker/scripts/start-kuzzle-dev.js --enable-plugins kuzzle-plugin-cluster,functional-test-plugin
"
volumes:
- "..:/var/app"
cap_add:
Expand Down
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ lib/util/interfaces.js
lib/util/mutex.js
lib/util/inflector.js
lib/util/koncordeCompat.js
lib/util/name-generator.js
features/support/application/functional-tests-app.js
lib/model/security/token.js
lib/core/auth/tokenManager.js
Expand Down Expand Up @@ -120,4 +121,4 @@ lib/types/errors/ErrorDefinition.js
lib/types/errors/ErrorDomains.js
lib/util/array.js
lib/util/bufferedPassThrough.js
lib/util/dump-collection.js
lib/util/dump-collection.js
6 changes: 5 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"plugins": [
"no-only-tests"
],
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/ban-ts-ignore": "off",
Expand Down Expand Up @@ -61,7 +64,8 @@
"brace-style": ["error", "stroustrup"],
"space-infix-ops": 2,
"space-unary-ops": [2, { "words": true, "nonwords": false, "overrides": { "!": true } }],
"key-spacing": ["error", { "afterColon": true }]
"key-spacing": ["error", { "afterColon": true }],
"no-only-tests/no-only-tests": "error"
},
"overrides": [
{
Expand Down
22 changes: 0 additions & 22 deletions .github/actions/cache-node-modules/action.yml

This file was deleted.

162 changes: 0 additions & 162 deletions .github/workflows/pull_request.workflow.yml

This file was deleted.

Loading

0 comments on commit 18134d9

Please sign in to comment.