Skip to content

Merge branch 'main' of https://github.com/permaweb/ao #18

Merge branch 'main' of https://github.com/permaweb/ao

Merge branch 'main' of https://github.com/permaweb/ao #18

Workflow file for this run

name: πŸ„ Test & Deploy AO Messenger Unit
on:
pull_request:
branches:
- main
paths:
- "servers/mu/**"
push:
branches:
- main
paths:
- "servers/mu/**"
defaults:
run:
shell: bash
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: βŽ” Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: πŸ“₯ Download deps
uses: bahmutov/npm-install@v1
with:
working-directory: servers/mu
- name: ⚑ Run Tests
working-directory: servers/mu
run: |
npm test
env:
CI: true
deploy:
runs-on: ubuntu-latest
# Only deploy on main branch
if: github.ref == 'refs/heads/main'
# Uncomment if we ever start running the release job
# needs: [test, release]
needs: [test]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
with:
ref: ${{ needs.bump.outputs.TAG }}
- name: βŽ” Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: πŸ“₯ Download deps
uses: bahmutov/npm-install@v1
with:
working-directory: servers/mu
- name: πŸ‘€ Env
run: |
echo "Event name: ${{ github.event_name }}"
echo "Git ref: ${{ github.ref }}"
echo "GH actor: ${{ github.actor }}"
echo "SHA: ${{ github.sha }}"
VER=`node --version`; echo "Node ver: $VER"
VER=`npm --version`; echo "npm ver: $VER"
- name: πŸš€ Deploy
working-directory: servers/mu
env:
DEPLOY_HOOK: ${{ secrets.MU_RENDER_DEPLOY_HOOK }}
run: |
node deploy.js