Skip to content

fix @totalsoft/pino-opentelemetry version #107

fix @totalsoft/pino-opentelemetry version

fix @totalsoft/pino-opentelemetry version #107

Workflow file for this run

# This workflow will run tests using node and then publish a package to NPM when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: run tests
on:
push:
branches:
- master
pull_request:
branches: [master]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install packages
run: npm ci
- name: Test EJS syntax
run: npm run ejslint
- name: Run tests
run: npm test