Browse Source

Merge pull request #1673 from meriadec/fix-ci

Install libudev-dev on CI and clear CI cache
gre-patch-1
Meriadec Pillet 6 years ago
committed by GitHub
parent
commit
16c64b2d13
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -9,6 +9,8 @@ jobs:
build:
<<: *defaults
steps:
- run: sudo apt-get update
- run: sudo apt-get install -y libudev-dev
- run:
name: Install latest yarn
command: |
@ -19,10 +21,10 @@ jobs:
- checkout
- restore_cache:
keys:
- v11-yarn-packages-{{ checksum "yarn.lock" }}
- v12-yarn-packages-{{ checksum "yarn.lock" }}
- run: yarn install
- save_cache:
key: v11-yarn-packages-{{ checksum "yarn.lock" }}
key: v12-yarn-packages-{{ checksum "yarn.lock" }}
paths:
- node_modules
- run: yarn lint

Loading…
Cancel
Save