Add forceVisualConfig #840
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: Lint overlay | |
on: | |
push: | |
paths: | |
- src/frontend/overlay/** | |
- .github/** | |
pull_request: | |
paths: | |
- src/frontend/overlay/** | |
- .github/** | |
jobs: | |
lint: | |
name: Lint overlay | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9.5.0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
cache-dependency-path: 'src/frontend/pnpm-lock.yaml' | |
- run: echo "::add-matcher::.github/problem-matchers.json" | |
- name: "Install dependencies" | |
run: pnpm install | |
working-directory: "src/frontend" | |
- name: "Lint overlay" | |
working-directory: "src/frontend/overlay" | |
run: pnpm run lint |