Skip to content

Commit e89aa8f

Browse files
authored
Merge pull request #565 from futureware-tech/v5
Release v5
2 parents 6a2cef2 + 477bd6a commit e89aa8f

13 files changed

Lines changed: 34264 additions & 26794 deletions

.eslintignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 55 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,26 @@
11
version: 2
22
updates:
3-
# Enable version updates for npm
4-
- package-ecosystem: 'npm'
5-
# Look for `package.json` and `lock` files in the `root` directory
6-
directory: '/'
7-
# Check the npm registry for updates every day (weekdays)
3+
- package-ecosystem: github-actions
4+
directory: /
85
schedule:
9-
interval: 'daily'
6+
interval: weekly
7+
groups:
8+
actions-minor:
9+
update-types:
10+
- minor
11+
- patch
12+
13+
- package-ecosystem: npm
14+
directory: /
15+
schedule:
16+
interval: weekly
17+
groups:
18+
npm-development:
19+
dependency-type: development
20+
update-types:
21+
- minor
22+
- patch
23+
npm-production:
24+
dependency-type: production
25+
update-types:
26+
- patch

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v5
2+
3+
- Fix flaky boot issues by adding a retry parameter (#563).
4+
- Print stdout/stderr even if the command fails (#562).
5+
16
## v4
27

38
- Add a `wait_for_boot` option (default false, preserving current behavior) to

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<p align="center">
2-
<a href="https://github.com/futureware-tech/simulator-action/actions"><img alt="simulator-action status" src="https://github.com/futureware-tech/simulator-action/workflows/build-test/badge.svg"></a>
3-
</p>
1+
[![build-test](https://github.com/futureware-tech/simulator-action/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/futureware-tech/simulator-action/actions/workflows/test.yml)
42

53
# Launch iOS Simulator in GitHub Actions
64

@@ -12,8 +10,8 @@ self-hosted runners.
1210

1311
```yaml
1412
steps:
15-
- uses: actions/checkout@v4
16-
- uses: futureware-tech/simulator-action@v4
13+
- uses: actions/checkout@v5
14+
- uses: futureware-tech/simulator-action@v5
1715
with:
1816
model: 'iPhone 8'
1917
- run: flutter drive

0 commit comments

Comments
 (0)