ignore environment markers in dep specs (#295)

Contributes to: #256
This commit is contained in:
Kevin Stillhammer
2026-01-15 13:58:24 +01:00
committed by GitHub
parent 90ea8a399c
commit deb632007b
9 changed files with 4138 additions and 34 deletions
+12 -3
View File
@@ -10,13 +10,19 @@
"package": "ncc build -o dist/ruff-action src/ruff-action.ts && ncc build -o dist/update-known-checksums src/update-known-checksums.ts",
"act": "act pull_request -W .github/workflows/test.yml --container-architecture linux/amd64 -s GITHUB_TOKEN=\"$(gh auth token)\"",
"update-known-checksums": "RUNNER_TEMP=known_checksums node dist/update-known-checksums/index.js src/download/checksum/known-checksums.ts \"$(gh auth token)\"",
"all": "npm ci --ignore-scripts && npm run build && npm run check && npm run package"
"test": "jest",
"all": "npm ci --ignore-scripts && npm run build && npm run check && npm run test && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astral-sh/ruff-action.git"
},
"keywords": ["actions", "python", "ruff", "action"],
"keywords": [
"actions",
"python",
"ruff",
"action"
],
"author": "@eifinger",
"license": "Apache-2.0",
"dependencies": {
@@ -26,16 +32,19 @@
"@octokit/core": "^7.0.3",
"@octokit/plugin-paginate-rest": "^13.1.1",
"@octokit/plugin-rest-endpoint-methods": "^16.0.0",
"@renovatebot/pep440": "^4.1.0",
"@renovatebot/pep440": "^4.2.1",
"smol-toml": "^1.4.1"
},
"devDependencies": {
"@biomejs/biome": "2.1.4",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.2.1",
"@types/semver": "^7.7.0",
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"ts-jest": "^29.2.5",
"typescript": "^5.9.2"
}
}