no saml #809
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
id: cache-dist | |
with: | |
path: ./code/dist | |
key: ${{ github.sha }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '19.x' | |
- name: Install npm package for dist | |
run: | | |
cd code/dist | |
npm install | |
- name: Build js and scss | |
run: | | |
cd code | |
npm install && gulp build | |
deploy: | |
runs-on: ubuntu-latest | |
needs: [build] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
id: cache-dist | |
with: | |
path: ./code/dist | |
key: ${{ github.sha }} | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 7.4 | |
- name: provide deploy_key | |
env: | |
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} | |
run: | | |
mkdir "$HOME/.ssh" | |
echo "$DEPLOY_KEY" > "$HOME/.ssh/id_rsa" | |
chmod 600 "$HOME/.ssh/id_rsa" | |
- name: install composer for deployment | |
run: | | |
composer install | |
- name: run deployer for develop | |
if: github.ref == 'refs/heads/develop' | |
run: | | |
php vendor/bin/dep deploy develop | |
- name: run deployer for production | |
if: github.ref == 'refs/heads/main' | |
run: | | |
php vendor/bin/dep deploy production | |
test: | |
runs-on: ubuntu-latest | |
needs: [deploy] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
id: cache-dist | |
with: | |
path: ./code/dist | |
key: ${{ github.sha }} | |
- name: install playwright | |
run: | | |
npm install -D @playwright/test | |
npx playwright install | |
- name: run test for develop | |
env: | |
PASSWORD: ${{ secrets.PASSWORD }} | |
if: github.ref == 'refs/heads/develop' | |
run: | | |
URL=https://develop.sharepicgenerator.de/ PASS=$PASSWORD npx playwright test tests/create-sharepic.spec.js | |
- name: run test for production | |
env: | |
PASSWORD: ${{ secrets.PASSWORD }} | |
if: github.ref == 'refs/heads/main' | |
run: | | |
URL=https://sharepicgenerator.de/ PASS=$PASSWORD npx playwright test tests/create-sharepic.spec.js | |