Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Test

on:
pull_request:
branches:
- main
push:
branches:
- main

permissions:
contents: read

jobs:
test:
name: Test
strategy:
matrix:
node-version:
- 20.19.x
- 22.17.x
os:
- macos-latest
- ubuntu-latest
- windows-latest
runs-on: "${{ matrix.os }}"
steps:
- run: git config --global core.autocrlf input
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: "${{ matrix.node-version }}"
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn lint && yarn test
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
},
"eslint.validate": ["typescript"],
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"scripts": {
"build": "yarn run build:code && yarn run build:schema",
"build:code": "tsc",
"build:schema": "node --experimental-strip-types ./scripts/build-dxt-schema.js",
"build:schema": "node ./scripts/build-dxt-schema.js",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-dxt-schema.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DxtManifestSchema, DxtSignatureInfoSchema } from "../src/schemas.ts";
import { DxtManifestSchema, DxtSignatureInfoSchema } from "../dist/schemas.js";
import * as z from "zod/v4";
import fs from "node:fs/promises";
import path from "node:path";
Expand Down
7 changes: 1 addition & 6 deletions test/dxtignore.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,10 @@ temp/`;
});

it("should return empty array if file cannot be read", () => {
const content = "*.log";
fs.writeFileSync(dxtIgnorePath, content);
fs.chmodSync(dxtIgnorePath, 0); // Make file unreadable
fs.mkdirSync(dxtIgnorePath); // Make a dir so readFile fails

const patterns = readDxtIgnorePatterns(tempDir);
expect(patterns).toEqual([]);

// Restore permissions for cleanup
fs.chmodSync(dxtIgnorePath, 0o644);
});
});

Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2359,7 +2359,7 @@ ignore@^5.2.0:

ignore@^7.0.5:
version "7.0.5"
resolved "https://artifactory.infra.ant.dev:443/artifactory/api/npm/npm-all/ignore/-/ignore-7.0.5.tgz#4cb5f6cd7d4c7ab0365738c7aea888baa6d7efd9"
resolved "https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz#4cb5f6cd7d4c7ab0365738c7aea888baa6d7efd9"
integrity sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==

import-fresh@^3.2.1:
Expand Down
Loading