Skip to content

Commit

Permalink
Merge pull request #333 from javierbrea/release
Browse files Browse the repository at this point in the history
Release 4.2.1
  • Loading branch information
javierbrea committed May 16, 2024
2 parents 3fcec31 + 8c1cc8e commit 5636625
Show file tree
Hide file tree
Showing 7 changed files with 509 additions and 1,101 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["16.14.0", "18.2.0", "20.5.1"]
node: ["18.20.2", "20.13.1", "22.2.0"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -23,7 +23,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Cache npm
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-npm
with:
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Test unit
run: npm run test:unit
- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.node }}
path: coverage
Expand All @@ -50,7 +50,7 @@ jobs:
runs-on: windows-2022
strategy:
matrix:
node: ["16.14.0", "18.2.0", "20.5.1"]
node: ["18.20.2", "20.13.1", "22.2.0"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -59,7 +59,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Cache npm
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-windows-npm
with:
Expand All @@ -84,9 +84,9 @@ jobs:
with:
fetch-depth: 0
- name: Download test results
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-18.2.0
name: coverage-18.20.2
path: coverage
- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: '20.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@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org/'
- run: npm ci
- run: npm publish
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
### Removed
### BREAKING CHANGES

## [4.2.1] - 2024-05-16

### Changed
- chore: Bump eslint-module-utils to 2.8.1
- chore: Update devDependencies
- chore: Upgrade Node.js versions used in pipelines. Remove Node.js 16.x. Add Node.js 22.x
- chore: Bump actions/cache to v4
- chore: Bump actions/upload-artifact to v4
- chore: Bump actions/download-artifact to v4

## [4.2.0] - 2024-01-16

### Added
Expand Down
Loading

0 comments on commit 5636625

Please sign in to comment.