Skip to content

Commit

Permalink
ci: Use bash as shell
Browse files Browse the repository at this point in the history
  • Loading branch information
motss committed Mar 26, 2020
1 parent 8302f2d commit bdd34cb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.target }}

- name: List versions
run: |
node -v && npm -v && which npm
# - name: Install global dependencies
# run: |
# npm i -g npm@latest --quiet
Expand All @@ -39,8 +44,9 @@ jobs:
npm run build:test && npm run build:config
- name: Check build
shell: bash
run: |
if [ "$RUNNER_OS" == "Windows"]; then
if [ "$RUNNER_OS" == "Windows" ]; then
pwd && ls -la
else
pwd && ls
Expand Down

0 comments on commit bdd34cb

Please sign in to comment.