git.delta.rocks / unique-network / refs/commits / 53dab706dcdc

difftreelog

source

.github/workflows/test_codestyle_v2.yml528 Bsourcehistory
1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586804253/Yarn+eslint2# Yarn Eslint over tests3#4name: yarn eslint56# Triger: only call from main workflow(re-usable workflows)7on:8  workflow_call:910jobs:11  code_style:12    runs-on: [ self-hosted-ci ]1314    steps:15      - uses: actions/checkout@v31617      - uses: actions/setup-node@v318        with:19          node-version: 162021      - name: Install modules22        run: cd tests && yarn23      - name: Run ESLint24        run: cd tests && yarn eslint --ext .ts,.js src/