Skip to content

Commit

Permalink
ci(.github/workflows/lint.yml): show content of msgpack mise cache
Browse files Browse the repository at this point in the history
  • Loading branch information
risu729 committed Sep 23, 2024
1 parent c60f136 commit 5711893
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ jobs:
with:
fetch-depth: 0 # fetch all history for commitlint

- run: |
wget https://github.com/ludocode/msgpack-tools/releases/download/v0.6/msgpack-tools-0.6-x86_64.deb
sudo apt install ./msgpack-tools-0.6-x86_64.deb
- name: Install mise
uses: jdx/mise-action@d6e32c1796099e0f1f3ac741c220a8b7eae9e5dd # v2.0.6
with:
Expand All @@ -110,6 +114,15 @@ jobs:
- name: Install bun and Node.js
run: mise install --verbose bun node

- run: which bun

- run: ls -aR /home/runner/.cache/mise

- run: |
cat /home/runner/.cache/mise/ubi-suzuki-shunsuke-ghalint/remote_versions-d3e61.msgpack.z | \
perl -e 'use Compress::Raw::Zlib;my $d=new Compress::Raw::Zlib::Inflate();my $o;undef $/;$d->inflate(<>,$o);print $o;' | \
msgpack2json -d
- name: Install package.json dependencies
run: bun install

Expand Down

0 comments on commit 5711893

Please sign in to comment.