Skip to content

Commit

Permalink
Merge pull request #59 from javierbrea/release
Browse files Browse the repository at this point in the history
Release v2.0.3
  • Loading branch information
javierbrea authored Aug 19, 2023
2 parents e96e457 + a3c2491 commit 568f807
Show file tree
Hide file tree
Showing 9 changed files with 2,448 additions and 1,607 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,18 @@ on:
- master
- release
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["14.16.1", "16.13.0", "17.0.1", "18.2.0"]
node: ["16.13.0", "18.2.0", "20.5.1"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
id: extract-branch
- name: Use Node.js
uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -49,10 +48,10 @@ jobs:
path: coverage
retention-days: 1
test-windows:
runs-on: windows-2019
runs-on: windows-2022
strategy:
matrix:
node: ["14.16.1", "16.13.0", "17.0.1", "18.2.0"]
node: ["16.13.0", "18.2.0", "20.5.1"]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -88,7 +87,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
2 changes: 1 addition & 1 deletion .github/workflows/check-package-version.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1name: check-package-version
name: check-package-version
on:
pull_request:
branches:
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 @@ -10,7 +10,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: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Removed
### BREAKING CHANGES

## [2.0.3] - 2023-08-19

### Changed
- chore(deps): Update devDependencies

## [2.0.2] - 2023-04-06

### Changed
Expand Down
Loading

0 comments on commit 568f807

Please sign in to comment.