Skip to content

Commit

Permalink
release-2.0.2 (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
copperlight authored Nov 21, 2024
1 parent e127443 commit ee17bf2
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 14 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ jobs:
os: [ubuntu-latest, macos-latest]
node-version: [16, 18, 20]
steps:
- uses: actions/checkout@v2
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
- uses: actions/checkout@v4

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: npm install
- name: Make

- name: Build
run: make
16 changes: 10 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,20 @@ jobs:
if: ${{ github.repository == 'Netflix-Skunkworks/spectator-js-nodejsmetrics' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node 18
uses: actions/setup-node@v2
- uses: actions/checkout@v4

- name: Setup Node 18
uses: actions/setup-node@v4
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
node-version: "18"
registry-url: "https://registry.npmjs.org"

- name: Install Dependencies
run: npm install
- name: Make

- name: Build
run: make

- name: Publish
run: npm publish
env:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,15 @@ jobs:
os: [ubuntu-latest, macos-latest]
node-version: [16, 18, 20]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: npm install

- name: Make
run: make
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nflx-spectator-nodejsmetrics",
"version": "2.0.1",
"author": "Daniel Muino <dmuino@gmail.com>",
"version": "2.0.2",
"author": "Matthew Johnson <matthewj@netflix.com>",
"main": "src/index.js",
"homepage": "https://github.org/Netflix/spectator-js",
"repository": {
Expand Down

0 comments on commit ee17bf2

Please sign in to comment.