feat: add support to custom app error description at app class level #147
Workflow file for this run
This file contains hidden or 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: 'Main' | |
on: | |
- push | |
jobs: | |
configure: | |
runs-on: zondax-runners | |
outputs: | |
uid_gid: ${{ steps.get-user.outputs.uid_gid }} | |
datetime: ${{ steps.get-datetime.outputs.datetime }} | |
steps: | |
- id: get-user | |
run: echo "uid_gid=$(id -u):$(id -g)" >> $GITHUB_OUTPUT | |
- id: get-datetime | |
run: echo "datetime=$(date +'%Y%m%d%H%M%S')" >> $GITHUB_OUTPUT | |
build: | |
needs: [configure] | |
runs-on: zondax-runners | |
container: | |
image: node:20-bookworm | |
env: | |
HEAD_SHA: ${{ github.event.pull_request.head.sha }} | |
HEAD_BRANCH_NAME: ${{ github.head_ref }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
registry-url: 'https://registry.npmjs.org' | |
scope: '@zondax' | |
- uses: oven-sh/setup-bun@v2 | |
- run: bun install | |
- run: bun run format:check | |
- run: bun lint | |
- run: bun test |