Skip to content

stringify all non-string values for name and tags (#109) #37

stringify all non-string values for name and tags (#109)

stringify all non-string values for name and tags (#109) #37

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/spectator-js' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node 18
uses: actions/setup-node@v4
with:
node-version: "18"
registry-url: "https://registry.npmjs.org"
- name: Install Dependencies
run: npm install
- name: Compile TypeScript
run: npm run build
- name: Test with Coverage
run: npm run test-with-coverage
- name: Check Coverage
run: npm run check-coverage
- name: Lint
run: npm run lint
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}