Skip to content

Commit 6e86748

Browse files
authored
chore: minor changes in github workflows (#90)
1 parent 3c81deb commit 6e86748

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

.github/workflows/cd-main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
cache: 'npm'
3333
- run: npm ci
3434
- run: npm run lint
35-
#- run: npm test
3635
- run: npm run build
3736
- name: Generate device summaries JSON
3837
run: npm run extract-device-summaries

.github/workflows/cd-non-main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
cache: 'npm'
3131
- run: npm ci
3232
- run: npm run lint
33-
#- run: npm test
3433
- run: npm run build
3534
env:
3635
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/update-submodules.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,11 @@ on:
77
jobs:
88
update:
99
name: Update submodules
10-
1110
runs-on: ubuntu-latest
12-
1311
strategy:
1412
matrix:
1513
node-version: [ 22.x ]
1614
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
17-
1815
steps:
1916
- name: Checkout repository
2017
uses: actions/checkout@v4
@@ -27,20 +24,18 @@ jobs:
2724
cache: 'npm'
2825
- run: npm ci
2926
- run: npm run update-submodules
30-
3127
- name: Generate token
3228
uses: tibdex/github-app-token@v2
3329
id: generate-token
3430
with:
3531
app_id: ${{ secrets.APP_ID }}
3632
private_key: ${{ secrets.APP_PRIVATE_KEY }}
37-
3833
- name: Create Pull Request
3934
uses: peter-evans/create-pull-request@v7
4035
with:
4136
token: ${{ steps.generate-token.outputs.token }}
4237
delete-branch: true
43-
commit-message: Update sub-modules
44-
title: Update sub-modules
38+
commit-message: "chore: update sub-modules"
39+
title: "chore: update sub-modules"
4540
body: |
4641
Update sub-modules

0 commit comments

Comments
 (0)