Skip to content

chore(deps-dev): bump snyk from 1.1227.0 to 1.1253.0 #1126

chore(deps-dev): bump snyk from 1.1227.0 to 1.1253.0

chore(deps-dev): bump snyk from 1.1227.0 to 1.1253.0 #1126

Workflow file for this run

name: Linting with eslint
on: [pull_request, workflow_dispatch]
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: set up node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: check out code
uses: actions/checkout@v4
- name: install
run: yarn
- name: rename publication config file
run: mv apps/publication/src/common/utils/clientConfig.sample.ts apps/publication/src/common/utils/clientConfig.ts
- name: generate eslint report
run: yarn lint:out
- name: merge all eslint reports
if: ${{ failure() }}
run: yarn lint:merge
- name: Annotate Code Linting Results
if: ${{ failure() }}
uses: ataylorme/eslint-annotate-action@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
report-json: "eslint_output.json"