Skip to content

Commit

Permalink
Merge pull request #13 from joshLong145/add/publish-ci
Browse files Browse the repository at this point in the history
Add/publish ci
  • Loading branch information
joshLong145 authored Mar 15, 2024
2 parents 02f5ef9 + 92dc94e commit 4e5c1fa
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test Deno Module

on:
push:
branches: [master]

jobs:
publish:
runs-on: ubuntu-latest
strategy:
matrix:
deno-version: [1.39.1]
steps:
- name: Git Checkout Deno Module
uses: actions/checkout@v2
- name: Use Deno Version ${{ matrix.deno-version }}
uses: denolib/setup-deno@v2
with:
deno-version: ${{ matrix.deno-version }}
- name: Publish jsr
run: deno publish
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"./lib/*.js"
],
"name": "@joshlong145/span",
"version": "0.5.0",
"version": "0.6.0",
"exports": "./src/mod.ts"
}

0 comments on commit 4e5c1fa

Please sign in to comment.