Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
actions: use github-hosted runners
Browse files Browse the repository at this point in the history
  • Loading branch information
arnemolland committed Jul 6, 2022
1 parent 1dce1d3 commit 673d119
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
build:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
with:
Expand All @@ -20,7 +20,7 @@ jobs:
run: npm run build
test:
needs: build
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
chromatic:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
publish:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/storybook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
storybook:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

Expand All @@ -27,7 +27,7 @@ jobs:

chromatic:
needs: storybook
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 673d119

Please sign in to comment.