Make internal-specific icon and level, as per PR comment: #121
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: "Validate log codes" | |
# Tests error, warning, info, success, and debug log codes to | |
# check for things like mistakes in the numbering of the codes. | |
# For example, duplicate code numbers or missing code numbers. | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
log-code-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
name: Validate log codes | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
- run: npm run codes |