name: "Lint (web)" on: # Run on every push (this also covers pull requests) push: # But only if something changes inside web paths: - 'web/**'' jobs: lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - run: yarn install - run: yarn lint