Skip to content

Commit 5514ad7

Browse files
committed
chore: update CI, remove unused files
1 parent 0ed632f commit 5514ad7

File tree

280 files changed

+18
-43252
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

280 files changed

+18
-43252
lines changed

.DS_Store

6 KB
Binary file not shown.

.github/FUNDING.yml

-2
This file was deleted.

.github/workflows/dart.yml

+16-5
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,25 @@ jobs:
2626
- name: Install dependencies
2727
run: dart pub get
2828

29-
# Verify the use of 'dart format' on each commit.
3029
- name: Verify formatting
3130
run: dart format --output=none --set-exit-if-changed .
3231

33-
# Passing '--fatal-infos' for slightly stricter analysis.
3432
- name: Analyze project source
3533
run: dart analyze --fatal-infos
3634

37-
# Tests
38-
- name: Run tests
39-
run: dart test
35+
# Tests on VM/native platform
36+
- name: Run VM tests
37+
run: dart test -p vm
38+
39+
# Tests on Chrome
40+
- name: Install Chrome
41+
run: |
42+
apt-get update
43+
apt-get install -y wget gnupg
44+
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
45+
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list
46+
apt-get update
47+
apt-get install -y google-chrome-stable
48+
49+
- name: Run Chrome tests
50+
run: dart test -p chrome

.github/workflows/docs.yaml

-42
This file was deleted.

doc/__404error.html

-125
This file was deleted.

doc/categories.json

-1
This file was deleted.

doc/constants/InternalConstants-class-sidebar.html

-33
This file was deleted.

0 commit comments

Comments
 (0)