diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 47e75d3..4f97f2f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -37,7 +37,12 @@ jobs: - name: Analyze run: dart analyze --fatal-infos --fatal-warnings . - - name: Run Tests + - name: Run WEB Tests + if: matrix.sdk != '3.0.0' + run: | + dart test --platform chrome + + - name: Run VM Tests run: | dart pub global activate coverage dart test --coverage=coverage && dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --report-on=lib diff --git a/CHANGELOG.md b/CHANGELOG.md index 97dde1c..dd87eb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.6.0-dev.12 +## 0.6.0-dev.13 - internal changes. - `chrome` platform tests. - added: diff --git a/pubspec.yaml b/pubspec.yaml index 131721e..4a0d12b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: jinja -version: 0.6.0-dev.12 +version: 0.6.0-dev.13 description: >- Jinja2 template engine for Dart. Variables, expressions, control structures and template inheritance.