Skip to content

Commit

Permalink
✨ feat: add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissgon committed May 5, 2024
1 parent 27813ff commit 33f0186
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
push:
branches:
- main
tags:
- "*"

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20"
- run: npm ci
- run: npm test
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chrissgon/perfectui",
"version": "0.10.2",
"version": "0.11.0",
"displayName": "Perfect UI",
"description": "An exceptionally lightweight and highly customizable CSS and JavaScript library for crafting elegant user interfaces.",
"private": false,
Expand Down

0 comments on commit 33f0186

Please sign in to comment.