Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-matterbridge-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ jobs:
- name: Link matterbridge in the project
run: npm link matterbridge

- name: Build the plugin
run: npm run build

- name: Lint the plugin
run: npm run lint

- name: Test the plugin
run: npm run test -- --forceExit

- name: Build the plugin
run: npm run build
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
run: |
npm ci
npm link matterbridge
npm run lint
npm run buildProduction
npm run lint
npm install -g .
npm run test -- --forceExit
npm pkg delete devDependencies scripts types
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
run: |
npm ci
npm link matterbridge
npm run lint
npm run buildProduction
npm run lint
npm install -g .
npm run test -- --forceExit
npm pkg delete devDependencies scripts types
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-matterbridge-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ jobs:
- name: Link matterbridge in the project
run: npm link matterbridge

- name: Build the plugin
run: npm run build

- name: Lint the plugin
run: npm run lint

- name: Test the plugin
run: npm run test -- --forceExit

- name: Build the plugin
run: npm run build

- name: Publish the plugin to npm
run: npm publish
env:
Expand Down
Loading
Loading