mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-05-28 06:26:09 -05:00
* Bump the pub group in /app with 2 updates Bumps the pub group in /app with 2 updates: [purchases_flutter](https://github.com/RevenueCat/purchases-flutter) and [supabase_flutter](https://github.com/supabase/supabase-flutter/tree/main/packages). Updates `purchases_flutter` from 6.18.0 to 6.19.0 - [Release notes](https://github.com/RevenueCat/purchases-flutter/releases) - [Changelog](https://github.com/RevenueCat/purchases-flutter/blob/6.19.0/CHANGELOG.md) - [Commits](https://github.com/RevenueCat/purchases-flutter/compare/6.18.0...6.19.0) Updates `supabase_flutter` from 2.3.1 to 2.3.2 - [Changelog](https://github.com/supabase/supabase-flutter/blob/main/CHANGELOG.md) - [Commits](https://github.com/supabase/supabase-flutter/commits/HEAD/packages) --- updated-dependencies: - dependency-name: purchases_flutter dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pub - dependency-name: supabase_flutter dependency-type: direct:production update-type: version-update:semver-patch dependency-group: pub ... Signed-off-by: dependabot[bot] <support@github.com> * Update Flutter Version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: ricoberger <mail@ricoberger.de>
54 lines
1.1 KiB
YAML
54 lines
1.1 KiB
YAML
name: Continuous Integration
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
flutter:
|
|
name: Flutter
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: "app"
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
flutter-version: '3.16.9'
|
|
channel: 'stable'
|
|
cache: true
|
|
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
|
|
cache-path: '${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:'
|
|
|
|
- name: Install Dependencies
|
|
run: |
|
|
flutter pub get
|
|
|
|
- name: Test
|
|
run: |
|
|
flutter test
|
|
|
|
deno:
|
|
name: Deno
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Deno
|
|
uses: denoland/setup-deno@v1
|
|
with:
|
|
deno-version: v1.x
|
|
|
|
- name: Test
|
|
run: |
|
|
deno test --allow-env --import-map=supabase/functions/import_map.json supabase/functions
|