Skip to content

Commit 65d75bd

Browse files
committed
Disable Git Workflow
1 parent b5becac commit 65d75bd

File tree

3 files changed

+166
-166
lines changed

3 files changed

+166
-166
lines changed
Lines changed: 71 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,71 @@
1-
name: browser-tests
2-
3-
on:
4-
push:
5-
branches:
6-
- pest-ci
7-
- develop
8-
- main
9-
pull_request:
10-
branches:
11-
- pest-ci
12-
- develop
13-
- main
14-
15-
jobs:
16-
ci:
17-
runs-on: ubuntu-latest
18-
19-
steps:
20-
- name: Checkout
21-
uses: actions/checkout@v4
22-
23-
- name: Setup PHP
24-
uses: shivammathur/setup-php@v2
25-
with:
26-
php-version: 8.4
27-
tools: composer:v2
28-
coverage: xdebug
29-
30-
- name: Setup Node
31-
uses: actions/setup-node@v4
32-
with:
33-
node-version: '22'
34-
cache: 'npm'
35-
36-
- name: Install Node Dependencies
37-
run: npm ci
38-
39-
- name: Install Playwright Dependencies
40-
run: npm install playwright@latest
41-
42-
- name: Install Playwright Browsers
43-
run: npx playwright install --with-deps
44-
45-
- name: Add `laravel-labs/starter-kit-browser-tests` Repository
46-
run: |
47-
composer config repositories.browser-tests '{"type": "vcs", "url": "https://github.com/laravel-labs/starter-kit-browser-tests"}' --file composer.json
48-
composer remove "phpunit/phpunit" --dev --no-update
49-
composer require "laravel-labs/starter-kit-browser-tests:dev-main@dev" --dev --no-update
50-
51-
- name: Install Dependencies
52-
run: composer install --no-interaction --prefer-dist --optimize-autoloader
53-
54-
- name: Copy Environment File
55-
run: cp .env.example .env
56-
57-
- name: Generate Application Key
58-
run: php artisan key:generate
59-
60-
- name: Setup Test Environment
61-
run: |
62-
cp vendor/laravel-labs/starter-kit-browser-tests/phpunit.xml.dist .
63-
rm phpunit.xml
64-
rm -Rf tests/
65-
cp -rf vendor/laravel-labs/starter-kit-browser-tests/tests/ tests/
66-
67-
- name: Build Assets
68-
run: npm run build
69-
70-
- name: Tests
71-
run: php vendor/bin/pest
1+
#name: browser-tests
2+
#
3+
#on:
4+
# push:
5+
# branches:
6+
# - pest-ci
7+
# - develop
8+
# - main
9+
# pull_request:
10+
# branches:
11+
# - pest-ci
12+
# - develop
13+
# - main
14+
#
15+
#jobs:
16+
# ci:
17+
# runs-on: ubuntu-latest
18+
#
19+
# steps:
20+
# - name: Checkout
21+
# uses: actions/checkout@v4
22+
#
23+
# - name: Setup PHP
24+
# uses: shivammathur/setup-php@v2
25+
# with:
26+
# php-version: 8.4
27+
# tools: composer:v2
28+
# coverage: xdebug
29+
#
30+
# - name: Setup Node
31+
# uses: actions/setup-node@v4
32+
# with:
33+
# node-version: '22'
34+
# cache: 'npm'
35+
#
36+
# - name: Install Node Dependencies
37+
# run: npm ci
38+
#
39+
# - name: Install Playwright Dependencies
40+
# run: npm install playwright@latest
41+
#
42+
# - name: Install Playwright Browsers
43+
# run: npx playwright install --with-deps
44+
#
45+
# - name: Add `laravel-labs/starter-kit-browser-tests` Repository
46+
# run: |
47+
# composer config repositories.browser-tests '{"type": "vcs", "url": "https://github.com/laravel-labs/starter-kit-browser-tests"}' --file composer.json
48+
# composer remove "phpunit/phpunit" --dev --no-update
49+
# composer require "laravel-labs/starter-kit-browser-tests:dev-main@dev" --dev --no-update
50+
#
51+
# - name: Install Dependencies
52+
# run: composer install --no-interaction --prefer-dist --optimize-autoloader
53+
#
54+
# - name: Copy Environment File
55+
# run: cp .env.example .env
56+
#
57+
# - name: Generate Application Key
58+
# run: php artisan key:generate
59+
#
60+
# - name: Setup Test Environment
61+
# run: |
62+
# cp vendor/laravel-labs/starter-kit-browser-tests/phpunit.xml.dist .
63+
# rm phpunit.xml
64+
# rm -Rf tests/
65+
# cp -rf vendor/laravel-labs/starter-kit-browser-tests/tests/ tests/
66+
#
67+
# - name: Build Assets
68+
# run: npm run build
69+
#
70+
# - name: Tests
71+
# run: php vendor/bin/pest

.github/workflows/lint.yml

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
1-
name: linter
2-
3-
on:
4-
push:
5-
branches:
6-
- develop
7-
- main
8-
pull_request:
9-
branches:
10-
- develop
11-
- main
12-
13-
permissions:
14-
contents: write
15-
16-
jobs:
17-
quality:
18-
runs-on: ubuntu-latest
19-
steps:
20-
- uses: actions/checkout@v4
21-
22-
- name: Setup PHP
23-
uses: shivammathur/setup-php@v2
24-
with:
25-
php-version: '8.4'
26-
27-
- name: Install Dependencies
28-
run: |
29-
composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
30-
npm install
31-
32-
- name: Run Pint
33-
run: vendor/bin/pint
34-
35-
- name: Format Frontend
36-
run: npm run format
37-
38-
- name: Lint Frontend
39-
run: npm run lint
40-
41-
# - name: Commit Changes
42-
# uses: stefanzweifel/git-auto-commit-action@v5
43-
# with:
44-
# commit_message: fix code style
45-
# commit_options: '--no-verify'
1+
#name: linter
2+
#
3+
#on:
4+
# push:
5+
# branches:
6+
# - develop
7+
# - main
8+
# pull_request:
9+
# branches:
10+
# - develop
11+
# - main
12+
#
13+
#permissions:
14+
# contents: write
15+
#
16+
#jobs:
17+
# quality:
18+
# runs-on: ubuntu-latest
19+
# steps:
20+
# - uses: actions/checkout@v4
21+
#
22+
# - name: Setup PHP
23+
# uses: shivammathur/setup-php@v2
24+
# with:
25+
# php-version: '8.4'
26+
#
27+
# - name: Install Dependencies
28+
# run: |
29+
# composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
30+
# npm install
31+
#
32+
# - name: Run Pint
33+
# run: vendor/bin/pint
34+
#
35+
# - name: Format Frontend
36+
# run: npm run format
37+
#
38+
# - name: Lint Frontend
39+
# run: npm run lint
40+
#
41+
# # - name: Commit Changes
42+
# # uses: stefanzweifel/git-auto-commit-action@v5
43+
# # with:
44+
# # commit_message: fix code style
45+
# # commit_options: '--no-verify'

.github/workflows/tests.yml

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
1-
name: tests
2-
3-
on:
4-
push:
5-
branches:
6-
- develop
7-
- main
8-
pull_request:
9-
branches:
10-
- develop
11-
- main
12-
13-
jobs:
14-
ci:
15-
runs-on: ubuntu-latest
16-
17-
steps:
18-
- name: Checkout
19-
uses: actions/checkout@v4
20-
21-
- name: Setup PHP
22-
uses: shivammathur/setup-php@v2
23-
with:
24-
php-version: 8.4
25-
tools: composer:v2
26-
coverage: xdebug
27-
28-
- name: Setup Node
29-
uses: actions/setup-node@v4
30-
with:
31-
node-version: '22'
32-
cache: 'npm'
33-
34-
- name: Install Node Dependencies
35-
run: npm ci
36-
37-
- name: Install Dependencies
38-
run: composer install --no-interaction --prefer-dist --optimize-autoloader
39-
40-
- name: Build Assets
41-
run: npm run build
42-
43-
- name: Copy Environment File
44-
run: cp .env.example .env
45-
46-
- name: Generate Application Key
47-
run: php artisan key:generate
48-
49-
- name: Tests
50-
run: ./vendor/bin/pest
1+
#name: tests
2+
#
3+
#on:
4+
# push:
5+
# branches:
6+
# - develop
7+
# - main
8+
# pull_request:
9+
# branches:
10+
# - develop
11+
# - main
12+
#
13+
#jobs:
14+
# ci:
15+
# runs-on: ubuntu-latest
16+
#
17+
# steps:
18+
# - name: Checkout
19+
# uses: actions/checkout@v4
20+
#
21+
# - name: Setup PHP
22+
# uses: shivammathur/setup-php@v2
23+
# with:
24+
# php-version: 8.4
25+
# tools: composer:v2
26+
# coverage: xdebug
27+
#
28+
# - name: Setup Node
29+
# uses: actions/setup-node@v4
30+
# with:
31+
# node-version: '22'
32+
# cache: 'npm'
33+
#
34+
# - name: Install Node Dependencies
35+
# run: npm ci
36+
#
37+
# - name: Install Dependencies
38+
# run: composer install --no-interaction --prefer-dist --optimize-autoloader
39+
#
40+
# - name: Build Assets
41+
# run: npm run build
42+
#
43+
# - name: Copy Environment File
44+
# run: cp .env.example .env
45+
#
46+
# - name: Generate Application Key
47+
# run: php artisan key:generate
48+
#
49+
# - name: Tests
50+
# run: ./vendor/bin/pest

0 commit comments

Comments
 (0)