Skip to content

Commit 2c65021

Browse files
authored
Merge pull request #563 from javierbrea/release
Release v2.2.6
2 parents ccdd93f + f2cba0f commit 2c65021

File tree

18 files changed

+4912
-4824
lines changed

18 files changed

+4912
-4824
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,28 @@ on:
55
- master
66
- release
77
pull_request:
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
811
jobs:
912
test:
1013
runs-on: ubuntu-latest
1114
strategy:
1215
matrix:
13-
node: ["16.14.0", "18.2.0", "20.5.1"]
16+
node: ["18.20.2", "20.13.1", "22.2.0"]
1417
steps:
1518
- name: Checkout
1619
uses: actions/checkout@v4
1720
- name: Extract branch name
1821
shell: bash
19-
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
22+
run: echo "branch=$(echo ${GITHUB_REF##*/})" >> $GITHUB_OUTPUT
2023
id: extract-branch
2124
- name: Use Node.js
2225
uses: actions/setup-node@v4
2326
with:
2427
node-version: ${{ matrix.node }}
2528
- name: Cache node modules
26-
uses: actions/cache@v3
29+
uses: actions/cache@v4
2730
env:
2831
cache-name: cache-node-modules
2932
with:
@@ -52,20 +55,20 @@ jobs:
5255
id: test-e2e
5356
- name: Upload E2E tests screenshots
5457
if: ${{ always() && steps.test-e2e.outcome == 'failure' }}
55-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5659
with:
5760
name: e2e-screenshots-${{ matrix.node }}
5861
path: test-e2e/react-app/cypress/screenshots
5962
retention-days: 7
6063
- name: Upload typescript E2E tests screenshots
6164
if: ${{ always() && steps.test-e2e.outcome == 'failure' }}
62-
uses: actions/upload-artifact@v3
65+
uses: actions/upload-artifact@v4
6366
with:
6467
name: e2e-typescript-screenshots-${{ matrix.node }}
6568
path: test-e2e/typescript/cypress/screenshots
6669
retention-days: 7
6770
- name: Upload test results
68-
uses: actions/upload-artifact@v3
71+
uses: actions/upload-artifact@v4
6972
with:
7073
name: coverage-${{ matrix.node }}
7174
path: coverage
@@ -79,9 +82,9 @@ jobs:
7982
with:
8083
fetch-depth: 0
8184
- name: Download test results
82-
uses: actions/download-artifact@v3
85+
uses: actions/download-artifact@v4
8386
with:
84-
name: coverage-18.2.0
87+
name: coverage-18.20.2
8588
path: coverage
8689
- name: Coveralls
8790
uses: coverallsapp/github-action@master

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Fixed
1111
### Removed
1212

13+
## [2.2.6] - 2024-05-17
14+
15+
### Added
16+
* chore: Handle jobs concurrency in build workflow
17+
18+
### Changed
19+
* chore: Remove usage of "set-output" in build workflow
20+
* chore(deps): Update devDependencies
21+
1322
## [2.2.5] - 2023-11-15
1423

1524
### Changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019-2023 Javier Brea
3+
Copyright (c) 2019-2024 Javier Brea
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)