Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.2.6 #563

Merged
merged 12 commits into from
May 17, 2024
19 changes: 11 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,28 @@ on:
- master
- release
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
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
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
run: echo "branch=$(echo ${GITHUB_REF##*/})" >> $GITHUB_OUTPUT
id: extract-branch
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Cache node modules
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
Expand Down Expand Up @@ -52,20 +55,20 @@ jobs:
id: test-e2e
- name: Upload E2E tests screenshots
if: ${{ always() && steps.test-e2e.outcome == 'failure' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: e2e-screenshots-${{ matrix.node }}
path: test-e2e/react-app/cypress/screenshots
retention-days: 7
- name: Upload typescript E2E tests screenshots
if: ${{ always() && steps.test-e2e.outcome == 'failure' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: e2e-typescript-screenshots-${{ matrix.node }}
path: test-e2e/typescript/cypress/screenshots
retention-days: 7
- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.node }}
path: coverage
Expand All @@ -79,9 +82,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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
### Removed

## [2.2.6] - 2024-05-17

### Added
* chore: Handle jobs concurrency in build workflow

### Changed
* chore: Remove usage of "set-output" in build workflow
* chore(deps): Update devDependencies

## [2.2.5] - 2023-11-15

### Changed
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2023 Javier Brea
Copyright (c) 2019-2024 Javier Brea

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