Skip to content

Bump @testing-library/react from 15.0.6 to 15.0.7 #38

Bump @testing-library/react from 15.0.6 to 15.0.7

Bump @testing-library/react from 15.0.6 to 15.0.7 #38

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
permissions:
contents: write
pull-requests: write
checks: write
issues: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
php-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up PHP
uses: setup-php/setup-php@v2
with:
php-version: 8.2
extensions: pcov
- name: Install dependencies
run: composer install
- name: Run lint
run: composer run phpcs
- name: Run tests
run: composer run phpunit
- name: Run static analysis
run: composer run phpstan
js-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Install dependencies
run: npm install
- name: Run lint
run: npm run lint
- name: Run tests
run: npm run test