ente/.github/workflows/web-lint.yml
Manav Rathi 4ebbed82d6 Watch for changes in the workflow itself
And also install flutter
2024-03-04 15:20:28 +05:30

22 lines
539 B
YAML

name: "Lint (web)"
on:
# Run on every push (this also covers pull requests)
push:
paths:
# - But only if something changes inside web
- "web/**"
# - Or if the there is some change in GitHub workflows themselves
- ".github/workflows/**"
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v4
- run: yarn install
- run: yarn lint