-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·36 lines (35 loc) · 868 Bytes
/
Copy pathdart.yaml
File metadata and controls
executable file
·36 lines (35 loc) · 868 Bytes
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
on:
pull_request:
push:
branches:
- main
paths:
- 'packages/**'
- 'formats/**'
- 'smoke/**'
- '.github/workflows/dart.yaml'
jobs:
smoke:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: "Install Tools"
run: ./.github/workflows/scripts/install-tools.sh
- name: "Run Smoke Tests"
run: melos run smoke --no-select
test:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: "Install Tools"
run: ./.github/workflows/scripts/install-tools.sh
- name: "Run Unit Tests"
run: melos run test --no-select