mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 22:45:47 +08:00
22 lines
426 B
YAML
22 lines
426 B
YAML
name: ui5lint
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '20.11.0'
|
|
- run: cd app && npm i
|
|
- run: cd app && npm install --global @ui5/linter && ui5lint --ignore-pattern "webapp/index.html" --details
|