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

Loading…
Cancel
Save