Skip to content

Switch from ssh-deploy to rsync-deployments #86

Switch from ssh-deploy to rsync-deployments

Switch from ssh-deploy to rsync-deployments #86

Workflow file for this run

name: Memory Models Tests
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
push:
branches:
- master
jobs:
prettier:
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up node and cache packages
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install npm packages
run: npm ci
- name: Run prettier
run: npx prettier . --write
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply formatting changes
branch: ${{ github.head_ref }}
jest:
if: github.event.pull_request.draft == false
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up node and cache packages
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install npm packages
run: npm ci
- name: Run jest tests
run: npm run test-cov
- name: Coveralls (jest)
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
build:
runs-on: ubuntu-latest
environment:
name: publish-docs
url: https://www.cs.toronto.edu/~david/memory-viz
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- name: Set up node and cache packages
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install npm packages
run: npm ci
- name: Build docs and demo website
run: |
npm run build --workspace=demo
npm run build --workspace=docs
mkdir docs/build/demo
cp -r demo/dist/* docs/build/demo
- name: Deploy to Server
uses: burnett01/[email protected]
with:
switches: -avzr --delete
path: docs/build/demo/
remote_path: ${{ secrets.REMOTE_TARGET }}
remote_host: ${{ secrets.REMOTE_HOST }}
remote_user: ${{ secrets.REMOTE_USER }}
remote_key: ${{ secrets.SSH_PRIVATE_KEY }}