Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
mlantz committed Apr 24, 2024
2 parents 53b896a + 4a5a2c3 commit 37edff3
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/style.yml
@@ -1,18 +1,24 @@
on: push
name: Code Style
name: Styles

on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]

jobs:
php:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.1']
php-versions: ['8.2']
steps:
- uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.2'

- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
Expand All @@ -23,10 +29,10 @@ jobs:
js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 20

- name: Install Node dependencies
run: npm install --ignore-scripts
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/tests.yml
Expand Up @@ -12,15 +12,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.1']
php-versions: ['8.2']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.2'
coverage: 'xdebug'

- name: Copy .env
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
----

## [v2.19.1] - 2024-04-24

### Changed
- General updates and CICD fixes

## [v2.19.0] - 2024-04-24

### Added
Expand Down

0 comments on commit 37edff3

Please sign in to comment.