File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments