Skip to content

Commit 33c7be5

Browse files
authored
Merge pull request #147 from SUSE/feat/add-ci-extension
feat: add CI workflow for AI Factory UI Extension
2 parents 5a3878d + 5760958 commit 33c7be5

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: AI Factory UI Extension CI
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'pkg/**'
7+
- 'package.json'
8+
9+
permissions:
10+
contents: read
11+
12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
14+
cancel-in-progress: true
15+
16+
jobs:
17+
ci:
18+
runs-on: ubuntu-latest
19+
timeout-minutes: 15
20+
steps:
21+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
22+
23+
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
24+
with:
25+
node-version: '24'
26+
cache: yarn
27+
28+
- run: yarn install --frozen-lockfile --ignore-engines
29+
30+
- run: npx eslint --ext .js,.ts,.vue pkg/aif-ui/
31+
32+
- run: yarn build-pkg aif-ui

0 commit comments

Comments
 (0)