Skip to content

Commit

Permalink
feat(plugin): mvp of artillery plugin memory inspector (#2008)
Browse files Browse the repository at this point in the history
* feat(plugin): create memory inspector plugin

* test(plugins): add tests for memory inspector plugin

* docs(plugins): add README to memory-inspector plugin

* ci(publish): add memory-inspector plugin publish job
  • Loading branch information
bernardobridge committed Aug 8, 2023
1 parent 3114fd3 commit 0d666cf
Show file tree
Hide file tree
Showing 11 changed files with 785 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/npm-publish-all-packages-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,5 @@ jobs:
# Skytrace is a Typescript Package and needs to install -> build -> publish
- run: npm install -w skytrace
- run: npm run build -w skytrace
- run: npm -w skytrace publish --tag canary
- run: npm -w skytrace publish --tag canary
- run: npm -w artillery-plugin-memory-inspector publish --tag canary
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish artillery-plugin-memory-inspector to npm
on:
push:
branches:
- main
paths:
- packages/artillery-plugin-memory-inspector/package.json
jobs:
build:
if: "contains(github.event.head_commit.message, 'ci: release v')"
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
scope: '@artilleryio'
- run: npm -w artillery-plugin-memory-inspector publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading

0 comments on commit 0d666cf

Please sign in to comment.