mirror of
https://github.com/logto-io/logto.git
synced 2024-12-30 20:33:54 -05:00
ci: use macOS for annotations (#1655)
* ci: use macOS for annotations * ci: remove concurrency * ci: use macOS for lint
This commit is contained in:
parent
beb24b7b44
commit
b1e1407b87
2 changed files with 6 additions and 2 deletions
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
|
@ -25,7 +25,9 @@ jobs:
|
|||
run: pnpm ci:build
|
||||
|
||||
main-lint:
|
||||
runs-on: ubuntu-latest
|
||||
# avoid out of memory issue since macOS has bigger memory
|
||||
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
|
4
.github/workflows/upload-annotations.yml
vendored
4
.github/workflows/upload-annotations.yml
vendored
|
@ -12,7 +12,9 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
upload-annotations:
|
||||
runs-on: ubuntu-latest
|
||||
# avoid out of memory issue since macOS has bigger memory
|
||||
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
|
||||
runs-on: macos-latest
|
||||
|
||||
permissions:
|
||||
checks: write
|
||||
|
|
Loading…
Reference in a new issue