git.delta.rocks / unique-network / refs/commits / 4f01d22c81db

difftreelog

Update test_codestyle_v2.yml

Alex2022-10-19parent: #3a245f0.patch.diff
in: master

1 file changed

modified.github/workflows/test_codestyle_v2.ymldiffbeforeafterboth
before · .github/workflows/test_codestyle_v2.yml
1name: yarn eslint23on:4  workflow_call:56jobs:7  code_style:8    runs-on: [ self-hosted-ci ]910    steps:11      - uses: actions/checkout@v31213      - uses: actions/setup-node@v314        with:15          node-version: 161617      - name: Install modules18        run: cd tests && yarn19      - name: Run ESLint20        run: cd tests && yarn eslint --ext .ts,.js src/
after · .github/workflows/test_codestyle_v2.yml
1# Yarn Eslint over tests2#3name: yarn eslint45# Triger: only call from main workflow(re-usable workflows)6on:7  workflow_call:89jobs:10  code_style:11    runs-on: [ self-hosted-ci ]1213    steps:14      - uses: actions/checkout@v31516      - uses: actions/setup-node@v317        with:18          node-version: 161920      - name: Install modules21        run: cd tests && yarn22      - name: Run ESLint23        run: cd tests && yarn eslint --ext .ts,.js src/