chore(deps): bump wire-elements/modal from 2.0.13 to 3.0.2 #1455
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pest: | |
runs-on: ubuntu-22.04 | |
services: | |
postgres: | |
image: postgres:17-alpine | |
env: | |
POSTGRES_PASSWORD: password | |
POSTGRES_USER: sail | |
POSTGRES_DB: testing | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- name: 👀 Checkout | |
uses: actions/checkout@v5 | |
- name: 🪄 Setup | |
uses: ./.github/actions/setup | |
- name: 🔮 Install Composer Dependencies | |
run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
- name: 🧶 Install Node Dependencies | |
run: yarn install --frozen-lockfile --no-progress | |
- name: 🧱 Build JS Dependencies | |
run: yarn build | |
- name: 🕵️♂️ Run Pest Tests | |
run: ./vendor/bin/pest --configuration=phpunit.ci.xml --parallel --processes=4 --bail |