Skip to content

fix: wait 60 seconds before measuring nodejs.cpuUsage so that you don… #5

fix: wait 60 seconds before measuring nodejs.cpuUsage so that you don…

fix: wait 60 seconds before measuring nodejs.cpuUsage so that you don… #5

Workflow file for this run

name: Release
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
- v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+
jobs:
build:
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
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm install
- name: Make
run: make
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}