add: logo #79
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ui5lint | |
on: | |
push: | |
jobs: | |
ui5lint: | |
permissions: | |
contents: read | |
packages: read | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.x] | |
steps: | |
- name: 🔨 checkout repository | |
uses: actions/checkout@v4 | |
- name: 🔨 use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: 🔨 install package dependencies | |
run: npm install | |
- name: 🔨 run typescript check | |
run: npm run build && npm run ui5lint |