Skip to content

Commit a629434

Browse files
authored
Merge pull request #91 from watany-dev/claude/add-ci-checks-mzhvM
2 parents 5cdbb83 + e2914d1 commit a629434

4 files changed

Lines changed: 26 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,23 @@ on:
99
permissions: {}
1010

1111
jobs:
12+
actions-lint:
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: read
16+
steps:
17+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
18+
with:
19+
persist-credentials: false
20+
21+
- name: actionlint
22+
shell: bash
23+
run: bash <(curl -sSL https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) && ./actionlint -color
24+
25+
- name: zizmor
26+
uses: zizmorcore/zizmor-action@71321a20a9ded102f6e9ce5718a2fcec2c4f70d8 # v0.5.2
27+
with:
28+
min-severity: informational
1229
lint:
1330
runs-on: ubuntu-latest
1431
permissions:

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121

2222
- name: Extract tag version
2323
id: tag
24-
run: echo "version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
24+
run: echo "version=${GITHUB_REF#refs/tags/v}" >> "$GITHUB_OUTPUT"
2525

2626
- name: Read package.json version
2727
id: package
28-
run: echo "version=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT
28+
run: echo "version=$(jq -r '.version' package.json)" >> "$GITHUB_OUTPUT"
2929

3030
- name: Validate version match
3131
env:

bun.lock

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
},
7474
"license": "MIT",
7575
"overrides": {
76-
"fast-xml-parser": ">=5.3.8",
76+
"fast-xml-parser": ">=5.5.7",
7777
"rollup": ">=4.59.0"
7878
},
7979
"dependencies": {}

0 commit comments

Comments
 (0)