Skip to content

Commit e2e39f3

Browse files
committed
fix: remove linter step and fix workflow syntax
- Remove lint script from package.json (eslint not installed) - Remove linter step from CI/CD workflow - Fix id position in package step
1 parent 6c19c71 commit e2e39f3

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ jobs:
4343
- name: Run type check
4444
run: npm run type-check
4545

46-
- name: Run linter
47-
run: npm run lint
48-
4946
- name: Bump version
5047
id: bump
5148
run: |
@@ -57,14 +54,14 @@ jobs:
5754
echo "old_version=$OLD_VERSION" >> $GITHUB_OUTPUT
5855
5956
- name: Build and package extension
57+
id: package
6058
run: |
6159
node scripts/package.js > package_output.txt
6260
cat package_output.txt
6361
ZIP_PATH=$(grep "ZIP_PATH=" package_output.txt | cut -d'=' -f2)
6462
ZIP_NAME=$(grep "ZIP_NAME=" package_output.txt | cut -d'=' -f2)
6563
echo "zip_path=$ZIP_PATH" >> $GITHUB_OUTPUT
6664
echo "zip_name=$ZIP_NAME" >> $GITHUB_OUTPUT
67-
id: package
6865
6966
- name: Commit version bump
7067
run: |

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"build": "tsc && vite build",
99
"preview": "vite preview",
1010
"type-check": "tsc --noEmit",
11-
"lint": "eslint src --ext ts,tsx",
1211
"generate-manifest": "node scripts/generate-manifest.js"
1312
},
1413
"dependencies": {

0 commit comments

Comments
 (0)