Skip to content

Commit

Permalink
Merge pull request #289 from javierbrea/release
Browse files Browse the repository at this point in the history
Release v7.0.2
  • Loading branch information
javierbrea authored Aug 16, 2023
2 parents 22b57fb + b5b25a6 commit d65368f
Show file tree
Hide file tree
Showing 33 changed files with 7,576 additions and 6,103 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"es6": true
},
"parserOptions": {
"ecmaVersion": "2018"
"ecmaVersion": 2022
},
"plugins": ["prettier"],
"rules": {
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ on:
- main
- release
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
node: ["14.18.0", "16.13.0", "17.5.0", "18.2.0"]
node: ["16.14.0", "18.2.0", "20.5.1"]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -59,7 +62,7 @@ jobs:
- name: Download test results
uses: actions/download-artifact@v3
with:
name: coverage-16.13.0
name: coverage-18.2.0
path: coverage
- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/check-package-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-package-version:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-github-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@javierbrea'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org/'
- run: npm ci
- run: npm publish
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-mutation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
branches:
- main
- release
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-mutation:
runs-on: ubuntu-latest
Expand All @@ -15,7 +18,7 @@ jobs:
id: extract-branch
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org/'
- name: Cache node modules
uses: actions/cache@v3
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Removed
### BREAKING CHANGES

## [7.0.2] - 2023-08-16

### Changed
- chore(deps): Update devDependencies
- chore(deps): Use NodeJs 16.x, 18.x and 20.x in pipelines
- refactor: Remove redundant double negation
- refactor: Use optional chain expressions

### Added
- chore: Handle concurrency in pipelines

## [7.0.1] - 2023-04-04

### Changed
Expand Down
Loading

0 comments on commit d65368f

Please sign in to comment.