Skip to content

feat: precache

feat: precache #38

Workflow file for this run

on:
push:
branches:
- development
pull_request:
branches:
- development
jobs:
test-install:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: ./
- run: flutter --version
- run: dart pub global activate git_helper && git_helper -h
test-beta-install:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: ./
with:
channel: 'beta'
- run: flutter --version
- run: dart pub global activate git_helper && git_helper -h
test-precache:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: ./
with:
precache: '--web'
- run: flutter --version
- run: dart pub global activate git_helper && git_helper -h