Skip to content

Commit 4b5766e

Browse files
authored
Merge pull request #308 from javierbrea/release
Release v1.4.5
2 parents 4965c67 + 4386c80 commit 4b5766e

File tree

16 files changed

+1944
-3704
lines changed

16 files changed

+1944
-3704
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node: ["12.22.1", "14.16.1", "15.14.0", "16.0.0"]
13+
node: ["12.22.1", "14.16.1", "15.14.0", "16.1.0"]
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v2
@@ -74,10 +74,12 @@ jobs:
7474
steps:
7575
- name: Checkout
7676
uses: actions/checkout@v2
77+
with:
78+
fetch-depth: 0
7779
- name: Download test results
7880
uses: actions/download-artifact@v2
7981
with:
80-
name: coverage-15.14.0
82+
name: coverage-16.1.0
8183
path: coverage
8284
- name: Coveralls
8385
uses: coverallsapp/github-action@master

.github/workflows/publish-to-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# Setup .npmrc file to publish to GitHub Packages
1111
- uses: actions/setup-node@v2
1212
with:
13-
node-version: '12.x'
13+
node-version: '14.x'
1414
registry-url: 'https://npm.pkg.github.com'
1515
# Defaults to the user or organization that owns the workflow file
1616
scope: '@javierbrea'

.github/workflows/publish-to-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-node@v2
1111
with:
12-
node-version: '12.x'
12+
node-version: '14.x'
1313
registry-url: 'https://registry.npmjs.org/'
1414
- run: npm ci
1515
- run: npm publish

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npm run lint-staged

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sonarlint.connectedMode.project": {
3+
"connectionId": "javierbrea",
4+
"projectKey": "javierbrea_cypress-localstorage-commands"
5+
}
6+
}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1111
### Removed
1212
### BREAKING CHANGES
1313

14+
## [1.4.5] - 2021-05-29
15+
16+
### Changed
17+
- chore(deps): Update devDependencies
18+
- chore: Migrate Sonar project
19+
1420
## [1.4.4] - 2021-04-29
1521

1622
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,8 @@ MIT, see [LICENSE](./LICENSE) for details.
265265
[npm-downloads-url]: https://www.npmjs.com/package/cypress-localstorage-commands
266266
[npm-dependencies-image]: https://img.shields.io/david/javierbrea/cypress-localstorage-commands.svg
267267
[npm-dependencies-url]: https://david-dm.org/javierbrea/cypress-localstorage-commands
268-
[quality-gate-image]: https://sonarcloud.io/api/project_badges/measure?project=cypress-localstorage-commands&metric=alert_status
269-
[quality-gate-url]: https://sonarcloud.io/dashboard?id=cypress-localstorage-commands
268+
[quality-gate-image]: https://sonarcloud.io/api/project_badges/measure?project=javierbrea_cypress-localstorage-commands&metric=alert_status
269+
[quality-gate-url]: https://sonarcloud.io/dashboard?id=javierbrea_cypress-localstorage-commands
270270
[release-image]: https://img.shields.io/github/release-date/javierbrea/cypress-localstorage-commands.svg
271271
[release-url]: https://github.com/javierbrea/cypress-localstorage-commands/releases
272272

0 commit comments

Comments
 (0)