File tree Expand file tree Collapse file tree 5 files changed +615
-463
lines changed Expand file tree Collapse file tree 5 files changed +615
-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
Original file line number Diff line number Diff line change 1717 run: make twigcs
1818
1919 - name: eslint
20- run : make eslint
20+ run: |
21+ docker-compose up -d node
22+ make eslint
2123
2224# - name: phpstan
2325# run: make phpstan
File renamed without changes.
You can’t perform that action at this time.
0 commit comments