feat: add dedicated logTrace function to the system logger with it's own prefix #1193
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
# Ensure GitHub actions are not run twice for same commits | |
push: | |
branches: [main] | |
tags: ['*'] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
node-version: [14.0.0, '*'] | |
exclude: | |
- os: macOS-latest | |
node-version: 14.0.0 | |
- os: windows-latest | |
node-version: 14.0.0 | |
fail-fast: false | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Node.js latest | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '*' | |
cache: 'npm' | |
check-latest: true | |
- name: Install dependencies | |
run: npm ci | |
- name: Linting | |
run: npm run format:ci | |
if: "${{ matrix.node-version == '*' }}" | |
- name: Build | |
run: npm run build | |
- name: Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
if: "${{ matrix.node-version != '*' }}" | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
check-latest: true | |
- name: Install dependencies ${{ matrix.node-version }} | |
run: npm ci | |
if: "${{ matrix.node-version != '*' }}" | |
- name: Tests | |
run: npm run test:ci | |
- name: Get test coverage flags | |
id: test-coverage-flags | |
run: |- | |
os=${{ matrix.os }} | |
node=${{ matrix.node-version }} | |
echo "os=${os/-latest/}" >> $GITHUB_OUTPUT | |
echo "node=node_${node//[.*]/}" >> $GITHUB_OUTPUT | |
shell: bash | |
- uses: codecov/codecov-action@v3 | |
with: | |
file: coverage/coverage-final.json | |
flags: ${{ steps.test-coverage-flags.outputs.os }},${{ steps.test-coverage-flags.outputs.node }} |