updated flutter-drive.yml
This commit is contained in:
parent
4519160d4f
commit
c4af614ab2
|
@ -5,7 +5,7 @@ on:
|
||||||
# but only for the main branch
|
# but only for the main branch
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- master
|
||||||
# A workflow run is made up of one or more jobs.
|
# A workflow run is made up of one or more jobs.
|
||||||
jobs:
|
jobs:
|
||||||
# id of job, a string that is unique to the "jobs" node above.
|
# id of job, a string that is unique to the "jobs" node above.
|
||||||
|
@ -37,6 +37,14 @@ jobs:
|
||||||
- uses: subosito/flutter-action@v1.4.0
|
- uses: subosito/flutter-action@v1.4.0
|
||||||
with:
|
with:
|
||||||
channel: 'master' # 'stable' or 'dev' or 'beta'
|
channel: 'master' # 'stable' or 'dev' or 'beta'
|
||||||
|
- uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: '14'
|
||||||
|
- name: "Install npm dependencies"
|
||||||
|
run: |
|
||||||
|
cd ./nodejs_server_test_auth_basic_and_ssl
|
||||||
|
npm install
|
||||||
|
cd ..
|
||||||
- name: "Run iOS Flutter Integration Test"
|
- name: "Run iOS Flutter Integration Test"
|
||||||
run: |
|
run: |
|
||||||
flutter pub get
|
flutter pub get
|
||||||
|
|
Loading…
Reference in New Issue