Skip to content

Commit 3a97f2a

Browse files
Merge branch 'updates-stub-and-readme' into dependabot/github_actions/main/softprops/action-gh-release-2
2 parents db3a4bf + ea3456c commit 3a97f2a

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
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

package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"devDependencies": {
33
"@tailwindcss/forms": "^0.5.7",
4-
"@tailwindcss/typography": "^0.5.10",
4+
"@tailwindcss/typography": "^0.5.13",
55
"autoprefixer": "^10.4.18",
66
"dotenv": "^16.4.5",
77
"postcss": "^8.4.37",

0 commit comments

Comments
 (0)