File tree 5 files changed +616
-463
lines changed
5 files changed +616
-463
lines changed Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ "env" : {
3
+ "browser" : true ,
4
+ "commonjs" : true ,
5
+ "es6" : true
6
+ } ,
7
+ "extends" : "eslint:recommended" ,
8
+ "globals" : {
9
+ "Atomics" : "readonly" ,
10
+ "SharedArrayBuffer" : "readonly"
11
+ } ,
12
+ "parserOptions" : {
13
+ "ecmaVersion" : 2018
14
+ } ,
15
+ "rules" : {
16
+ }
17
+ } ;
Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v1
10
+ - run : docker login --username ${GITHUB_ACTOR} --password ${{ secrets.GITHUB_TOKEN_TO_PUSH_TO_PACKAGE_REGISTRY }} docker.pkg.github.com
11
+ - run : |
12
+ export CI_PROJECT_PATH=${GITHUB_REPOSITORY}/ci/${GITHUB_REF} \
13
+ CI_REGISTRY=docker.pkg.github.com \
14
+ COMPOSE_FILE=docker-compose.yml:docker-compose.gitlab-ci.yml
15
+ make build
16
+ docker images
Original file line number Diff line number Diff line change 17
17
run: make twigcs
18
18
19
19
- name: eslint
20
- run : make eslint
20
+ run: |
21
+ docker-compose up -d node
22
+ make eslint
21
23
22
24
# - name: phpstan
23
25
# run: make phpstan
File renamed without changes.
You can’t perform that action at this time.
0 commit comments