ci: Print tool versions and hopefully this fix error

This commit is contained in:
Abdulkaiz Khatri 2023-09-12 12:19:07 +05:30
parent 832ccc731c
commit f658273beb

View file

@ -31,9 +31,16 @@ jobs:
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
cache: "yarn" cache: "yarn"
- run: |
yarn install --frozen-lockfile - name: Installing npm dependencies
yarn render run: yarn install
continue-on-error: false
- name: Print CBMP Version
run: npx cbmp --version
- name: Rendering Bitmaps
run: yarn render
continue-on-error: false continue-on-error: false
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
@ -49,7 +56,7 @@ jobs:
- name: Fixing 'attr' module error - name: Fixing 'attr' module error
run: pip install --force-reinstall --upgrade attrs run: pip install --force-reinstall --upgrade attrs
- name: Clickgen(Cursor Builder) Version - name: Print Clickgen Version
run: | run: |
clickgen --version clickgen --version
ctgen --version ctgen --version