From 0429fe3f6f2622385f805e8692cda46ece4a3d19 Mon Sep 17 00:00:00 2001 From: Arthur Monney Date: Mon, 3 Apr 2023 22:34:55 +0200 Subject: [PATCH 1/2] remove filament style --- .github/workflows/tests.yml | 13 +++++++++++++ resources/css/filament.css | 1 - webpack.mix.js | 1 - 3 files changed, 13 insertions(+), 2 deletions(-) delete mode 100644 resources/css/filament.css diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f71946f7..03e307c6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,5 +21,18 @@ jobs: - name: Install Composer dependencies run: composer install --prefer-dist --no-interaction + - name: Install NPM dependencies + run: yarn install --frozen-lockfile + + - name: Compile assets + run: yarn run production + + - name: Commit changes + uses: stefanzweifel/git-auto-commit-action@v4 + with: + branch: main + commit_message: > + chore: build assets + - name: Execute tests run: composer pest diff --git a/resources/css/filament.css b/resources/css/filament.css deleted file mode 100644 index e733bb5b..00000000 --- a/resources/css/filament.css +++ /dev/null @@ -1 +0,0 @@ -@import '../../vendor/filament/filament/resources/css/app.css'; diff --git a/webpack.mix.js b/webpack.mix.js index 923b3850..5f1db885 100644 --- a/webpack.mix.js +++ b/webpack.mix.js @@ -16,7 +16,6 @@ mix.disableNotifications(); mix.js('resources/js/app.js', 'public/js').react() .postCss('resources/css/app.css', 'public/css') - .postCss('resources/css/filament.css', 'public/css') .webpackConfig({ output: { chunkFilename: 'js/[name].js?id=[chunkhash]' }, resolve: { From 8497e033c270445c971d2556d72ef282a5adfa19 Mon Sep 17 00:00:00 2001 From: Arthur Monney Date: Mon, 3 Apr 2023 22:37:55 +0200 Subject: [PATCH 2/2] remove yarn ci --- .github/workflows/tests.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 03e307c6..f71946f7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,18 +21,5 @@ jobs: - name: Install Composer dependencies run: composer install --prefer-dist --no-interaction - - name: Install NPM dependencies - run: yarn install --frozen-lockfile - - - name: Compile assets - run: yarn run production - - - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v4 - with: - branch: main - commit_message: > - chore: build assets - - name: Execute tests run: composer pest