https://github.com/muslimbi https://gitlab.com/muslimbi https://bitbucket.org/muslimbi java -jar gitbucket.war --port=9090 ---------------------------------------------------------------------------- composer create-project --prefer-dist laravel/laravel laravelcicd echo Laravel Install Successfully cd laravelcicd php artisan serve git init --initial-branch=main git config --global user.name "Deen Islam" git config --global user.email "muslimbi@gmail.com" git switch --create main git remote add gitlab git@gitlab.com:muslimbi/laravelcicd.git git remote add github git@github.com:muslimbi/laravelcicd.git git remote add bitbucket git@bitbucket.org:muslimbi/laravelcicd.git git push --set-upstream gitlab main git push --set-upstream github main git push --set-upstream bitbucket main git init git add . git commit -m "First Commit" git remote add gitlab https://gitlab.com/muslimbi/laravelcicd.git git remote add github https://github.com/muslimbi/laravelcicd.git git remote add bitbucket https://bitbucket.org/muslimbi/laravelcicd.git git remote add gitbucket http://127.0.0.1:9090/git/root/laravelcicd.git git branch -M main git push -uf gitlab main git push -uf github main git push -uf bitbucket main git push -uf gitbucket main git commit -a -m "Third Commit" git branch -M develop git push -uf gitlab develop git push -uf github develop git push -uf bitbucket develop git push -u gitbucket develop git branch -a //all local and remote branches git checkout main git merge develop git branch -r | grep -v '\->' | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | while read remote; do git branch --track "${remote#origin/}" "$remote"; done git fetch --all git pull --all ./config.cmd --url https://github.com/muslimbi/laravelautoscript --token AB5337SM7EZU3GZDM6KVIUTESQ4XI ./config.cmd --url https://github.com/muslimbi/pythonProject10 --token AB5337TA2NXIUNRYXJONTETESRAJS ./run.cmd runs-on: self-hosted jobs: test: name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: node_version: [8, 10, 12] os: [ubuntu-latest, windows-latest, macos-latest] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node_version }} uses: actions/setup-node@v1 with: version: ${{ matrix.node_version }} - name: npm install, build and test run: | npm install npm run build --if-present npm test