Skip to content

fix(package): exclude node_modules/.git/.DS_Store from the built zip … #10

fix(package): exclude node_modules/.git/.DS_Store from the built zip …

fix(package): exclude node_modules/.git/.DS_Store from the built zip … #10

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
phpcs:
name: PHP CodeSniffer
runs-on: ubuntu-latest
container:
image: php:8.5
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install system dependencies
run: |
apt-get update && apt-get install -y unzip git
- name: Install Composer
run: |
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
- name: Composer Install
run: |
export COMPOSER_ALLOW_SUPERUSER=1
composer install --no-progress --prefer-dist
- name: Run PHP CodeSniffer
run: |
composer lint