Skip to content

close polls automatically & notify user #31

close polls automatically & notify user

close polls automatically & notify user #31

Workflow file for this run

name: "Code Styling"
on:
push:
paths:
- '**.php'
- 'resources'
pull_request:
paths:
- '**.php'
- 'resources'
jobs:
code-styling:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Install Composer
uses: php-actions/composer@v6
with:
php_extensions: intl zip
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 21
- name: Install Dependencies
run: npm install
- name: Run Prettier
run: npm run prettier
- name: Run Pint
uses: aglipanci/laravel-pint-action@2.3.1