Merge pull request #15 from MyTonSwap/develop #158
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: Merge to Main | |
on: | |
push: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Run test on push main | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
- name: Install pnpm | |
run: npm install -g pnpm | |
- run: pnpm install | |
- name: Install Cypress | |
run: pnpx cypress install | |
- name: Build Storybook | |
run: pnpm run build-storybook | |
- name: Run Cypress tests | |
run: | | |
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \ | |
"npx http-server storybook-static --port 6006 --silent" \ | |
"npx wait-on tcp:6006 && pnpm cypress:run" | |
- run: pnpm run build | |
deploy: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up SSH | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.DEV_SSH_PRIVATE_KEY }} | |
- name: Deploy to Server | |
env: | |
DEPLOY_USER: ${{ secrets.DEV_SSH_USER }} | |
DEPLOY_HOST: ${{ secrets.DEV_SSH_HOST }} | |
DEPLOY_PATH: ${{ secrets.DEV_SSH_DEPLOY_PATH }} | |
run: | | |
echo $DEPLOY_PATH | |
ssh-keyscan $DEPLOY_HOST >> ~/.ssh/known_hosts | |
rsync -avz -e "ssh -o LogLevel=ERROR -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o BatchMode=yes" --rsync-path="TERM=xterm rsync" $GITHUB_WORKSPACE/ $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH | |
ssh -o LogLevel=ERROR -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o BatchMode=yes $DEPLOY_USER@$DEPLOY_HOST "cd $DEPLOY_PATH && (docker stop storybook-build || true) && (docker rm storybook-build || true) && docker build -t storybook-build . && docker run -d -p 6006:80 --name storybook-build storybook-build" |