update undo package

This commit is contained in:
2026-01-15 17:28:55 -08:00
parent 92a8c580b6
commit 20d794bbca
165 changed files with 2119 additions and 1230 deletions
+30
View File
@@ -0,0 +1,30 @@
name: github pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Setup Flutter
uses: subosito/flutter-action@v1
with:
channel: 'dev'
- name: Install
run: |
flutter config --enable-web
flutter pub get
- name: Build
run: cd example && flutter build web
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./example/build/web
+20
View File
@@ -0,0 +1,20 @@
name: test
on:
push:
jobs:
deploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Setup Flutter
uses: subosito/flutter-action@v1
with:
channel: "dev"
- name: Install
run: flutter pub get
- name: Test
run: flutter test