forked from ProtonMail/WebClients
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
22 lines (22 loc) · 730 Bytes
/
Copy pathcircle.yml
File metadata and controls
22 lines (22 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: 2
jobs:
build:
docker:
- image: circleci/node:12.4.0-stretch-browsers
steps:
- run: sudo apt-get install -y gawk
- checkout
- restore_cache:
key: npm-deps-{{ checksum "package.json" }}-{{ checksum "tasks/lazyInstallVendor" }}
- run: npm i --no-audit
- run: ./tasks/lazyInstallVendor test
- save_cache:
key: npm-deps-{{ checksum "package.json" }}-{{ checksum "tasks/lazyInstallVendor" }}
paths:
- node_modules
- run: npm run config
- run: ./tasks/checkInjector.sh --lint
- run: npm run lint
- run: npm run i18n:extract
- run: npm run i18n:check -- --debug
- run: npm test