Skip to content

Release flutter_custom_tabs_web v2.0.0 #48

Release flutter_custom_tabs_web v2.0.0

Release flutter_custom_tabs_web v2.0.0 #48

name: CI for the web implementation package
on:
push:
branches:
- main
- develop
paths:
- 'flutter_custom_tabs_web/**'
pull_request:
paths:
- 'flutter_custom_tabs_web/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Get flutter dependencies
run: flutter pub get
working-directory: ./flutter_custom_tabs_web
- name: Check for any formatting issues in the code
run: dart format --set-exit-if-changed .
working-directory: ./flutter_custom_tabs_web
- name: Statically analyze the Dart code for any errors
run: flutter analyze .
working-directory: ./flutter_custom_tabs_web
# TODO: Consider how to do integration tests on GitHub Actions.
# - uses: nanasess/setup-chromedriver@master
# - name: Start ChromeDriver
# run: chromedriver --port=444
# - name: Run unit tests
# run: ./run_test.sh
# working-directory: ./flutter_custom_tabs_web/example