diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml new file mode 100644 index 0000000..0b711e2 --- /dev/null +++ b/.github/workflows/integration-tests.yml @@ -0,0 +1,38 @@ +name: Integration Test +on: + push: +jobs: + integration: + services: + nginx-php-fpm: + image: jkaninda/nginx-php-fpm:latest + ports: + - "80:80" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Create Laravel project + run: | + composer create-project laravel/laravel laravel + - name: Fix Permission + run: chmod -R 777 ./laravel/storage + #- name: Run docker-compose + # run: docker-compose up -d + - name: Create script.js for K6 test + run: | + touch script.js && cat > script.js <