Skip to content

Commit 83b3894

Browse files
committed
don't like this, but let's try it
1 parent 3474bb8 commit 83b3894

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/validate.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,30 @@ jobs:
2727

2828
- name: 🔧 Configure git for Windows
2929
if: matrix.os == 'windows-latest'
30+
shell: cmd
3031
run: |
3132
git config --global core.autocrlf false
3233
git config --global core.eol lf
3334
3435
- name: 🧹 Clear npm cache
3536
if: matrix.os == 'windows-latest'
36-
run: npm cache clean --force
37+
shell: cmd
38+
run: |
39+
npm cache clean --force
40+
npm cache verify
3741
3842
- name: ▶️ Add repo
43+
shell: ${{ matrix.os == 'windows-latest' && 'cmd' || 'bash' }}
3944
run: |
4045
npx --yes epicshop@latest add ${{ github.event.repository.name }} ./workshop
4146
4247
- name: ʦ TypeScript
48+
shell: ${{ matrix.os == 'windows-latest' && 'cmd' || 'bash' }}
4349
run: npm run typecheck
4450
working-directory: ./workshop
4551

4652
- name: ⬣ ESLint
53+
shell: ${{ matrix.os == 'windows-latest' && 'cmd' || 'bash' }}
4754
run: npm run lint
4855
working-directory: ./workshop
4956

0 commit comments

Comments
 (0)