Skip to content

Commit 29b76fb

Browse files
committed
feat: dont run lint anymore
1 parent c1564ef commit 29b76fb

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

.github/workflows/build-libvirt.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,5 @@ jobs:
6666
- name: Build
6767
run: pnpm run build
6868

69-
- name: pnpm lint/bindings
70-
run: pnpm run lint/bindings
71-
continue-on-error: false
72-
73-
- name: lint/examples
74-
run: pnpm run lint/examples
75-
continue-on-error: true
76-
7769
- name: test
7870
run: pnpm run test

libvirt/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@ RUN apt-get update -y && apt-get install -y \
55
libvirt-dev \
66
jq
77

8+
# Install pnpm globally using npm
9+
RUN npm install -g pnpm@latest
810

911
WORKDIR /app

libvirt/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
1616
"build/stub": "tsup lib/stub.ts --dts",
1717
"build/ts": "tsup lib/index.ts --dts --format cjs --clean",
1818
"test": "mocha -r ts-node/register lib/**/*.spec.ts",
19-
"lint": "pnpm run lint/bindings && pnpm run lint/lib && pnpm run lint/examples",
20-
"lint/bindings": "styleguide/cpplint/cpplint.py src/*",
21-
"lint/lib": "eslint lib/**/*.ts",
22-
"lint/examples": "eslint examples",
2319
"examples/list": "node examples/list.js",
2420
"examples/start": "node examples/start.js",
2521
"examples/shutdown": "node examples/shutdown.js",

0 commit comments

Comments
 (0)