Skip to content

adicionando reverb #435

adicionando reverb

adicionando reverb #435

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main, develop]
jobs:
lint-php:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: "8.4"
- run: composer install --no-interaction --prefer-dist
- run: ./vendor/bin/pint --test
lint-js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- run: npm ci
- run: npm run lint