fix: Fix the auth proxy trust by ensuring the proxy is in the trust #1540
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linter | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: '*' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Cache | |
uses: actions/cache@v4 | |
id: cache | |
with: | |
path: '**/node_modules' | |
key: yarn-v1-${{ hashFiles('**/yarn.lock') }} | |
- name: Install | |
run: yarn --immutable | |
if: steps.cache.outputs.cache-hit != 'true' | |
- name: Lint | |
run: yarn lint |