Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
Added reconnecting client
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkonst committed Sep 9, 2021
1 parent e38749a commit b1a391f
Show file tree
Hide file tree
Showing 10 changed files with 9,175 additions and 44 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ node_modules/
.eslintcache

# Lock files
package-lock.json
yarn.lock

# IDE specific files
Expand Down
1 change: 0 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
package-lock = false
progress = false
28 changes: 28 additions & 0 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: v1.0
name: mqtt-client-js
agent:
machine:
type: e1-standard-2
os_image: ubuntu1804
execution_time_limit:
minutes: 5
blocks:
- name: "install"
dependencies: []
task:
jobs:
- name: "Install 🗂"
commands:
- checkout
- cache restore node-modules-$SEMAPHORE_GIT_BRANCH-$(checksum package-lock.json),node-modules-$SEMAPHORE_GIT_BRANCH,node-modules-master
- npm ci
- cache store node-modules-$SEMAPHORE_GIT_BRANCH-$(checksum package-lock.json) node_modules
- name: "test"
dependencies: ["install"]
task:
jobs:
- name: "Test 🛠"
commands:
- checkout
- cache restore node-modules-$SEMAPHORE_GIT_BRANCH-$(checksum package-lock.json)
- npm test
Binary file removed .travis-key.enc
Binary file not shown.
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit b1a391f

Please sign in to comment.