Skip to content

Commit

Permalink
PR-checks - run on self-hosted
Browse files Browse the repository at this point in the history
  • Loading branch information
JanneKiiskila committed May 15, 2024
1 parent bd43190 commit 0429216
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pr-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:
cancel-in-progress: true
jobs:
run-shellcheck-and-scripts:
runs-on: ubuntu-22.04
runs-on: [ "self-hosted", "client" ]
steps:
- uses: actions/checkout@v3
- run: shellcheck --version
Expand All @@ -24,7 +24,7 @@ jobs:
- run: edge-info/edge-info

run-identity-tool-tests:
runs-on: ubuntu-22.04
runs-on: [ "self-hosted", "client" ]
steps:
- uses: actions/checkout@v3
- name: Run identity-tools tests
Expand All @@ -38,7 +38,7 @@ jobs:
./create-dev-identity.sh -d -w CI-test
run-pysh-check:
runs-on: ubuntu-22.04
runs-on: [ "self-hosted", "client" ]
env:
PA_TOKEN: ${{ secrets.ACCESS_TOKEN }} # IzumaBOT Access Token
steps:
Expand All @@ -56,7 +56,7 @@ jobs:
- run: .github/workflows/pysh-checker.sh ${{ github.event.repository.default_branch }} ${{ github.ref_name }}

run-edge-testnet:
runs-on: ubuntu-22.04
runs-on: [ "self-hosted", "client" ]
steps:
- uses: actions/checkout@v3
- name: Run edge-testnet
Expand All @@ -65,13 +65,13 @@ jobs:
run: SNAP=snap fw-tools/edge-testnet

versions-check:
runs-on: ubuntu-22.04
runs-on: [ "self-hosted", "client" ]
steps:
- uses: actions/checkout@v3
- run: ./check_versions.sh

misspell:
runs-on: ubuntu-22.04
runs-on: [ "self-hosted", "client" ]
steps:
- name: Run misspell (findings may not increase)
run: |
Expand Down

0 comments on commit 0429216

Please sign in to comment.