Skip to content

Commit

Permalink
adds ubicloud runners
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Sep 15, 2023
1 parent 8a9dbc9 commit cfe2595
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ui-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ on:
jobs:
build-test:
name: Build & Test UI
runs-on: ubuntu-latest

strategy:
matrix:
runner: [ubuntu-latest, ubicloud]
runs-on: ${{ matrix.runner }}
steps:
- name: checkout
uses: actions/checkout@v3
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ui-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ permissions:
jobs:
run-linters:
name: Run UI linters
runs-on: ubuntu-latest

strategy:
matrix:
runner: [ubuntu-latest, ubicloud]
runs-on: ${{ matrix.runner }}
steps:
- name: checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit cfe2595

Please sign in to comment.