Skip to content

chore(deps): bump ip from 2.0.0 to 2.0.1 #113

chore(deps): bump ip from 2.0.0 to 2.0.1

chore(deps): bump ip from 2.0.0 to 2.0.1 #113

Workflow file for this run

name: Run eslint
on:
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
run-eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn install
- run: yarn test:ci
- run: yarn lint:ci
- run: jq -s '[.[][]]' reports/eslint/*.json > reports/eslint/eslint-combined.json
if: ${{ failure() }}
- name: Annotate Code Linting Results
uses: ataylorme/[email protected]
if: ${{ failure() }}
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
report-json: reports/eslint/eslint-combined.json
- name: Upload test artifacts
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: eslint_test_results
path: reports/eslint