-
-
Notifications
You must be signed in to change notification settings - Fork 237
54 lines (50 loc) · 1.21 KB
/
e2e_dart.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: e2e-sentry-dart
on:
push:
branches:
- main
- release/**
pull_request:
paths:
- "!**/*.md"
- "!**/class-diagram.svg"
- ".github/workflows/e2e_dart.yml"
- "dart/**"
- "e2e_test/**"
env:
SENTRY_AUTH_TOKEN_E2E: ${{ secrets.SENTRY_AUTH_TOKEN_E2E }}
SENTRY_DIST: 1
jobs:
cancel-previous-workflow:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # [email protected]
with:
access_token: ${{ github.token }}
build:
name: E2E
runs-on: "ubuntu-latest"
timeout-minutes: 30
defaults:
run:
working-directory: ./e2e_test
strategy:
fail-fast: false
matrix:
sdk: [stable, beta]
steps:
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 # pin@v1
with:
sdk: ${{ matrix.sdk }}
- uses: actions/checkout@v4
- name: Run
if: env.SENTRY_AUTH_TOKEN != null
run: |
dart pub get
dart run --define=SENTRY_ENVIRONMENT=e2e
analyze:
uses: ./.github/workflows/analyze.yml
with:
package: e2e_test
panaThreshold: 0