Skip to content

Commit

Permalink
release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
midzdotdev committed Nov 6, 2024
1 parent 5f3dc88 commit 23aa250
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
push:
branches:
- main

jobs:
release:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
with:
node-version-file: package.json

- run: npm install
- run: npx prettier --check .
- run: npx tsc --noEmit
- run: npx vitest --typecheck
- run: npx jsr publish

0 comments on commit 23aa250

Please sign in to comment.