Skip to content

chore(deps): update actions/checkout digest to 44c2b7a - autoclosed #1034

chore(deps): update actions/checkout digest to 44c2b7a - autoclosed

chore(deps): update actions/checkout digest to 44c2b7a - autoclosed #1034

Workflow file for this run

name: Code Cleanliness
on: [pull_request]
env: # environment variables (available in any part of the action)
NODE_VERSION: 18
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps: # list of steps
- name: Install NodeJS
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Code Checkout
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
with:
fetch-depth: 0
- name: Install Dependencies
run: npm install --workspaces
- name: Code Linting
run: |
npm run lint
npm run lint --workspaces --if-present