Skip to content

Commit 55d2baf

Browse files
Merge branch 'updates-stub-and-readme' into dependabot/github_actions/main/dependabot/fetch-metadata-2.1.0
2 parents b0e1434 + b74b003 commit 55d2baf

File tree

5 files changed

+13
-1661
lines changed

5 files changed

+13
-1661
lines changed

.github/workflows/run-tests.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ on:
88
- 'phpunit.xml.dist'
99
- 'composer.json'
1010
- 'composer.lock'
11-
- 'package.json'
12-
- 'package-lock.json'
11+
pull_request_target:
12+
branches:
13+
- main
1314

1415
jobs:
1516
test:
@@ -39,19 +40,18 @@ jobs:
3940
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
4041
coverage: none
4142

42-
- name: Setup Node.js
43-
uses: actions/setup-node@v4
44-
with:
45-
node-version: ${{ matrix.node }}
46-
47-
- name: Install npm dependencies
48-
run: npm install
49-
5043
- name: Setup problem matchers
5144
run: |
5245
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
5346
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
5447
48+
- name: Configure GitHub Token
49+
env:
50+
GH_TOKEN: ${{ secrets.GHA_PERSONAL_ACCESS_TOKEN }}
51+
run: |
52+
git config --global url."https://${GH_TOKEN}@github.com/".insteadOf "https://github.com/"
53+
git config --global url."https://${GH_TOKEN}@github.com/".insteadOf "[email protected]:"
54+
5555
- name: Install dependencies
5656
run: |
5757
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Fuelviews laravel tailwindcss package
1+
# Laravel tailwindcss package
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/fuelviews/laravel-tailwindcss.svg?style=flat-square)](https://packagist.org/packages/fuelviews/laravel-tailwindcss)
44
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/fuelviews/laravel-tailwindcss/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/fuelviews/laravel-tailwindcss/actions?query=workflow%3Arun-tests+branch%3Amain)
55
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/fuelviews/laravel-tailwindcss/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/fuelviews/laravel-tailwindcss/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
66
[![Total Downloads](https://img.shields.io/packagist/dt/fuelviews/laravel-tailwindcss.svg?style=flat-square)](https://packagist.org/packages/fuelviews/laravel-tailwindcss)
77

8-
Fuelviews Laravel TailwindCSS package offers an effortless solution for integrating the TailwindCSS framework into Laravel projects, enhancing front-end development with its utility-first CSS approach. It simplifies the process of incorporating TailwindCSS, allowing developers to focus on building their application without the hassle of manual configuration. By providing a straightforward installation and setup procedure, this package ensures that Laravel applications can leverage TailwindCSS's full potential for a more efficient and elegant development workflow.
8+
Laravel TailwindCSS package offers an effortless solution for integrating the TailwindCSS framework into Laravel projects, enhancing front-end development with its utility-first CSS approach.
99

1010
## Installation
1111

0 commit comments

Comments
 (0)