repo.or.cz
/
liberty-mw-skin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
업데이트 README.md, .github/README.en.md
[liberty-mw-skin.git]
/
.gitlab-ci.yml
blob
b12b331d85990850a77f41359766ec1530185a2e
1
stages:
2
- lint
3
4
eslint:
5
image: node:latest
6
stage: lint
7
script:
8
- npm install -g eslint eslint-config-wikimedia eslint-plugin-json
9
- eslint js --ignore-pattern 'lib/'
10
cache:
11
paths:
12
- node_modules/
13
14
phpcs:
15
image: php:7.4
16
stage: lint
17
script:
18
- php composer.phar test
19
cache:
20
paths:
21
- vendor/
22
- composer.phar
23
24
before_script:
25
- apt-get update -yqq
26
- apt-get install git -yqq
27
- curl -sS https://getcomposer.org/installer | php
28
- php composer.phar install