Skip to content

Commit 1a1f39e

Browse files
authored
Merge pull request #7 from lppjunior/develop
Fix standard bug
2 parents efcbf45 + d1cf8bd commit 1a1f39e

File tree

4 files changed

+18
-12
lines changed

4 files changed

+18
-12
lines changed

.github/workflows/main.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
name: dice-roll-js Integration Action
55

66
on:
7-
release:
8-
types: [ created ]
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
911

1012
env:
1113
NODE_VERSION: 12.x
@@ -25,7 +27,7 @@ jobs:
2527
- name: Install dependencies
2628
run: npm install
2729
- name: Run Standard
28-
run: standard
30+
run: npx standard
2931
- name: Run Jest
3032
run: npm run jest
3133
- name: Run Build

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.3.1] - 2020-08-28
11+
### Bugfix
12+
- Add standard to npm dev
13+
1014
## [1.3.0] - 2020-08-28
1115
### Add
1216
- Update package.json

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dice-roll-js",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Dice Roll is a project of rolling dice javascript based. Developed to support any application that needs data with random numbers.",
55
"private": true,
66
"main": "index.js",
@@ -32,8 +32,8 @@
3232
"copy-webpack-plugin": "^6.0.3",
3333
"eslint": "^7.7.0",
3434
"html-webpack-plugin": "^4.3.0",
35-
"jest": "^26.4.2",
3635
"standard": "^14.3.4",
36+
"jest": "^26.4.2",
3737
"webpack": "^4.44.1",
3838
"webpack-cli": "^3.3.12",
3939
"webpack-dev-server": "^3.11.0"

0 commit comments

Comments
 (0)