ente/.github/workflows/web-lint.yml
Workflow config file is invalid. Please check your config file: yaml: line 8: found unexpected end of stream
2024-03-04 11:27:01 +05:30

16 lines
345 B
YAML

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