8000 feat: implements config loader to enable remote or external configs · G-Research/git-proxy@aa0283d · GitHub
[go: up one dir, main page]

Skip to content

feat: Implements remote config support and config reload feature #42

feat: Implements remote config support and config reload feature

feat: Implements remote config support and config reload feature #42

Workflow file for this run

name: Code Cleanliness
on: [pull_request]
env: # environment variables (available in any part of the action)
NODE_VERSION: 18
permissions:
contents: read
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps: # list of steps
- name: Harden Runner
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2
with:
egress-policy: audit
- name: Install NodeJS
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Code Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 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
0