Skip to content
Merged

V5 #565

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
4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

55 changes: 0 additions & 55 deletions .eslintrc.json

This file was deleted.

29 changes: 23 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
version: 2
updates:
# Enable version updates for npm
- package-ecosystem: 'npm'
# Look for `package.json` and `lock` files in the `root` directory
directory: '/'
# Check the npm registry for updates every day (weekdays)
- package-ecosystem: github-actions
directory: /
schedule:
interval: 'daily'
interval: weekly
groups:
actions-minor:
update-types:
- minor
- patch

- package-ecosystem: npm
directory: /
schedule:
interval: weekly
groups:
npm-development:
dependency-type: development
update-types:
- minor
- patch
npm-production:
dependency-type: production
update-types:
- patch
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v5

- Fix flaky boot issues by adding a retry parameter (#563).
- Print stdout/stderr even if the command fails (#562).

## v4

- Add a `wait_for_boot` option (default false, preserving current behavior) to
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<p align="center">
<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>
</p>
[![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)

# Launch iOS Simulator in GitHub Actions

Expand All @@ -12,8 +10,8 @@ self-hosted runners.

```yaml
steps:
- uses: actions/checkout@v4
- uses: futureware-tech/simulator-action@v4
- uses: actions/checkout@v5
- uses: futureware-tech/simulator-action@v5
with:
model: 'iPhone 8'
- run: flutter drive
Expand Down
Loading