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 255309c commit 7282c2cCopy full SHA for 7282c2c
.circleci/config.yml
@@ -28,6 +28,18 @@ jobs:
28
name: Run tests
29
command: npm run test
30
31
+ - run:
32
+ name: Setup Chrome
33
+ command: |
34
+ sudo -s \
35
+ && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
36
+ && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
37
+ && apt-get update \
38
+ && apt-get install -y google-chrome-unstable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst ttf-freefont \
39
+ --no-install-recommends \
40
+ && rm -rf /var/lib/apt/lists/* \
41
+ && exit
42
+
43
- run:
44
name: Run codechecks
45
command: npx codechecks
0 commit comments