Skip to content

Commit

Permalink
chore: debug, look for prettier config files in windows runner
Browse files Browse the repository at this point in the history
  • Loading branch information
anasouardini committed Feb 24, 2024
1 parent 98635c2 commit 1c947e5
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,17 @@ jobs:
run: pnpm install

- name: ls
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
tree -L 3
elif [ "$RUNNER_OS" == "Windows" ]; then
tree -L 3
elif [ "$RUNNER_OS" == "macOS" ]; then
tree -L 3
fi
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
tree -L 3
elif [ "$RUNNER_OS" == "Windows" ]; then
@echo off
rem dir D:\ /s /b /a
dir D:\ /s /b /a || exit /b 0
rem dir D:\ /s /b /a
elif [ "$RUNNER_OS" == "macOS" ]; then
ls -la
fi
shell: bash

- name: Run CI
Expand Down

0 comments on commit 1c947e5

Please sign in to comment.