Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/silent-peas-vanish.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
24 changes: 24 additions & 0 deletions .github/workflows/health_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
- name: Increase ulimit
if: runner.os == 'macOS'
run: |
ulimit -n 10000
- uses: ./.github/actions/setup_node
with:
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -478,6 +482,10 @@ jobs:
contents: read
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
- name: Increase ulimit
if: runner.os == 'macOS'
run: |
ulimit -n 10000
- name: Run e2e deployment tests
uses: ./.github/actions/run_with_e2e_account
with:
Expand Down Expand Up @@ -526,6 +534,10 @@ jobs:
contents: read
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
- name: Increase ulimit
if: runner.os == 'macOS'
run: |
ulimit -n 10000
- name: Run e2e sandbox tests
uses: ./.github/actions/run_with_e2e_account
with:
Expand Down Expand Up @@ -554,6 +566,10 @@ jobs:
contents: read
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
- name: Increase ulimit
if: runner.os == 'macOS'
run: |
ulimit -n 10000
- uses: ./.github/actions/setup_node
with:
node-version: 18
Expand Down Expand Up @@ -612,6 +628,10 @@ jobs:
- resolve_inputs
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
- name: Increase ulimit
if: runner.os == 'macOS'
run: |
ulimit -n 10000
- uses: ./.github/actions/setup_node
with:
node-version: ${{ matrix.node-version }}
Expand Down Expand Up @@ -644,6 +664,10 @@ jobs:
id-token: write
contents: read
steps:
- name: Increase ulimit
if: runner.os == 'macOS'
run: |
ulimit -n 10000
- name: Checkout aws-amplify/amplify-backend repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Run E2E flow tests with ${{ matrix.pkg-manager }}
Expand Down
Loading