mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 22:45:47 +08:00

* fallback for ushellContainer * fix ui5lint warning for async in manifest * ui5lint ignore view1.controller --------- Co-authored-by: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com>
22 lines
465 B
YAML
22 lines
465 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" "webapp/controller/View1.controller.js" --details
|