Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
# for controller tests
- run: cp .env.prod .env

- run: yarn install
- run: yarn run build
- run: npm install
- run: npm run build
- run: php artisan migrate --force

- run: vendor/bin/phpunit
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
vendor/
package-lock.json
# comopser
/vendor

.idea

Expand Down
4 changes: 2 additions & 2 deletions first-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e

# install dependencies
composer install
yarn install
npm install

# create env file
cp .env.dist .env
Expand All @@ -17,7 +17,7 @@ mkdir -p storage/framework/sessions
mkdir -p storage/framework/views

# create the manifest.json file
yarn build
npm build


# since Laravel 11 ↓
Expand Down
Loading