Skip to content

add new test version #5

add new test version

add new test version #5

Workflow file for this run

---
name: Lint code
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
lint:
runs-on: github-actions-runner-emarsys
permissions:
contents: "read"
steps:
- name: Checkout code
shell: bash
run: |
sudo apt-get update
sudo apt-get install git -y
git clone https://github.com/emartech/magento2-extension.git
- name: Login to GitLab
uses: docker/login-action@v3
with:
registry: ${{ vars.REGISTRY_URL }}
username: ${{ secrets.GITLAB_USER }}
password: ${{ secrets.GITLAB_TOKEN }}
- name: Run codesniffer
shell: bash
run: |
ls -la
env:
VERSION: 2.4.0ce
# TODO need fix eslint outputs
# - name: Run eslint
# shell: bash
# run: |
# docker run --rm "${{ vars.REGISTRY_URL }}/itg-commerce/emarsys-magento2-extension-test/mage_node" sh -c "npm run code-style"