Skip to content

Commit 6bbc59a

Browse files
committed
chore(v): 0.2.3
1 parent 81f745e commit 6bbc59a

File tree

4 files changed

+8
-19
lines changed

4 files changed

+8
-19
lines changed

.github/workflows/release-package.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,8 @@ on:
55
types: [created]
66

77
jobs:
8-
build:
9-
runs-on: ubuntu-latest
10-
steps:
11-
- uses: actions/checkout@v2
12-
- uses: actions/setup-node@v2
13-
with:
14-
node-version: 14
15-
- run: npm ci
16-
- run: npm run lint
17-
- run: npm test
18-
- run: npm run build
198

209
publish-gpr:
21-
needs: build
2210
runs-on: ubuntu-latest
2311
permissions:
2412
packages: write
@@ -30,6 +18,9 @@ jobs:
3018
node-version: 14
3119
registry-url: https://npm.pkg.github.com/
3220
- run: npm ci
21+
- run: npm run lint
22+
- run: npm test
23+
- run: npm run build
3324
- run: npm publish
3425
env:
3526
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
IvanRave:registry=https://npm.pkg.github.com

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "logic-tree",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Build a JSON object from a logic expression string",
55
"repository": "github:ivanrave/logic-tree",
66
"keywords": [
@@ -14,9 +14,6 @@
1414
"files": [
1515
"lib/**/*"
1616
],
17-
"publishConfig": {
18-
"IvanRave:registry": "https://npm.pkg.github.com"
19-
},
2017
"scripts": {
2118
"build": "tsc",
2219
"test": "jest",

0 commit comments

Comments
 (0)