We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8db6ad7 commit ade3621Copy full SHA for ade3621
.github/workflows/ci.yml
@@ -163,7 +163,14 @@ jobs:
163
cache: true
164
- name: Install pana
165
run: |
166
- npm install --global cwebp-bin webpinfo gif2webp-bin && \
+ sudo apt-get install libjpeg-dev libpng-dev libtiff-dev libgif-dev && \
167
+ wget -q https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.4.0-linux-x86-64.tar.gz -O libwebp.tar.gz && \
168
+ tar -xvzf libwebp.tar.gz && \
169
+ cd libwebp-1.4.0 && \
170
+ ./configure && \
171
+ make && \
172
+ sudo make install && \
173
+ ./configure --help && \
174
dart pub global activate pana
175
- name: Check package score
176
run: pana --exit-code-threshold 0 --no-dartdoc .
0 commit comments