40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
|
name: Test webapp deployment
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '0 3 * * *'
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
test_app_deployment:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
node-version: [20.x]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||
|
uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: ${{ matrix.node-version }}
|
||
|
- name: Install dependencies
|
||
|
run: yarn
|
||
|
- name: Test webapp deployment
|
||
|
run: ./packages/deployer/test/test-webapp-deployment-undeployment.sh
|
||
|
- name: Notify Vulcanize Slack on CI failure
|
||
|
if: ${{ always() && github.ref_name == 'main' }}
|
||
|
uses: ravsamhq/notify-slack-action@v2
|
||
|
with:
|
||
|
status: ${{ job.status }}
|
||
|
notify_when: 'failure'
|
||
|
env:
|
||
|
SLACK_WEBHOOK_URL: ${{ secrets.VULCANIZE_SLACK_CI_ALERTS_WEBHOOK }}
|
||
|
- name: Notify DeepStack Slack on CI failure
|
||
|
if: ${{ always() && github.ref_name == 'main' }}
|
||
|
uses: ravsamhq/notify-slack-action@v2
|
||
|
with:
|
||
|
status: ${{ job.status }}
|
||
|
notify_when: 'failure'
|
||
|
env:
|
||
|
SLACK_WEBHOOK_URL: ${{ secrets.DEEPSTACK_SLACK_CI_ALERTS_WEBHOOK }}
|