Tests Cron #334
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: Tests Cron | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 9 * * 1-5" # At 09:00 AM, Monday through Friday | ||
permissions: | ||
issues: write | ||
content: read | ||
jobs: | ||
tests: | ||
name: Long running Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 #v3.5.3 | ||
- name: Use Node.js | ||
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0 | ||
with: | ||
node-version: 18 | ||
registry-url: "https://registry.npmjs.org/" | ||
scope: "@talend" | ||
cache: "yarn" | ||
- name: Install and tests | ||
run: | | ||
yarn --frozen-lockfile --ignore-scripts | ||
yarn test:cron | ||
- name: Create Issue on Failed workflow | ||
if: ${{ failure() }} | ||
uses: dacbd/create-issue-action@ba4d1c45cccf9c483f2720cefb40e437f0ee6f7d #v1.2.1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
title: module-to-cdn configuration fails | ||
body: | | ||
### Context | ||
[Failed Run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) | ||
[Codebase](https://github.com/${{ github.repository }}/tree/${{ github.sha }}) | ||
Workflow name - `${{ github.workflow }}` | ||
Job - `${{ github.job }}` | ||
status - `${{ job.status }}` | ||
assignees: jmfrancois |