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
18 changes: 18 additions & 0 deletions .github/workflows/js-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: JS Checks

on:
pull_request:
push:

permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true

jobs:
run-checks-and-tests:
uses: hemilabs/.github/.github/workflows/js-checks-pnpm.yml@e9f85a5eb81dda87d4c046eda82e45822bc1ee32
with:
node-versions: '["20", "22", "24"]'
16 changes: 16 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: NPM Publish

on:
release:
types:
- published

jobs:
npm-publish:
permissions:
contents: read
id-token: write
uses: hemilabs/.github/.github/workflows/npm-publish.yml@e9f85a5eb81dda87d4c046eda82e45822bc1ee32
with:
package-manager: "pnpm"
secrets: inherit
3 changes: 2 additions & 1 deletion .knip.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"entry": ["src/*.ts"]
"entry": ["src/*.ts"],
"ignoreDependencies": ["eslint-config-prettier"]
}
Loading