Skip to content

fix: introduce pino mixin function to handle trace/span id injection issue #859

fix: introduce pino mixin function to handle trace/span id injection issue

fix: introduce pino mixin function to handle trace/span id injection issue #859

Workflow file for this run

name: Unit
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
main:
timeout-minutes: 8
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install root dependencies
run: yarn
- name: Build
run: yarn ci:build
- name: Run lint + type check
run: yarn ci:lint
- name: Run unit tests
run: yarn ci:unit