Skip to content

Implemented autosave on a 5-second timer #190

Implemented autosave on a 5-second timer

Implemented autosave on a 5-second timer #190

Workflow file for this run

name: package:dartpad_ui
permissions: read-all
on:
push:
branches: [ main ]
paths:
- '.github/workflows/dartpad_ui.yml'
- 'pkgs/dartpad_ui/**'
pull_request:
branches: [ main ]
paths:
- '.github/workflows/dartpad_ui.yml'
- 'pkgs/dartpad_ui/**'
schedule:
- cron: '0 0 * * 0' # weekly
jobs:
validate:
runs-on: ubuntu-latest
defaults:
run:
working-directory: pkgs/dartpad_ui/
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: subosito/flutter-action@74af56c5ed2697ba4621264652728e8d217e53d3
with:
channel: main
- run: flutter --version
- run: flutter pub get
- run: flutter analyze
- run: dart format --set-exit-if-changed .
- run: flutter build web
- run: flutter test