Skip to content

Cloud check in action #1007

Cloud check in action

Cloud check in action #1007

Workflow file for this run

name: Cloud check in action
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: 11 8,18 * * *
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment: user
steps:
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 14
- name: init
run: npm install
- name: run
id: run
uses: nick-fields/retry@v2
env:
TY_USER_NAME: ${{secrets.TY_USER_NAME}}
TY_PASSWORD: ${{secrets.TY_PASSWORD}}
with:
timeout_minutes: 10
max_attempts: 3
command: npm start