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