We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d781d72 commit 46e34edCopy full SHA for 46e34ed
.github/workflows/npm-publish.yml
@@ -0,0 +1,23 @@
1
+on:
2
+ push:
3
+ tags:
4
+
5
+'v..*'
6
+release:
7
+ types: [created]
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
14
+uses: actions/checkout@v3
15
+uses: actions/setup-node@v3
16
+ with:
17
+ node-version: '16.x'
18
+ registry-url: 'https://registry.npmjs.org/'
19
+run: npm install
20
+run: npm test
21
+run: npm publish
22
+env:
23
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package.json
@@ -1,6 +1,6 @@
{
"name": "prettier-for-vite-react",
- "version": "0.1.1",
+ "version": "0.1.2",
"description": "Automation for installing Prettier in a Vite-React project that will integrate the use of prettier into the project",
"main": "prettier-vite-react.sh",
"bin": {
0 commit comments