Skip to content

Commit

Permalink
ci: revert default runner
Browse files Browse the repository at this point in the history
  • Loading branch information
DavDeDev committed May 3, 2024
1 parent 89af94d commit 015fa76
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
Expand Down Expand Up @@ -50,16 +50,16 @@ jobs:

name: Run all tests
runs-on: self-hosted
defaults:
run:
shell: bash
# defaults:
# run:
# shell: bash


steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Retrieve Git history, needed to verify commits
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -70,6 +70,7 @@ jobs:
- run: pnpm install --frozen-lockfile

- name: Set SENTRY_AUTH_TOKEN env if secret exists
shell: bash
run: |
if [[ -n "${{ secrets.SENTRY_AUTH_TOKEN }}" ]]; then
echo "SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}" >> $GITHUB_ENV
Expand Down

0 comments on commit 015fa76

Please sign in to comment.