cypress-aiotests-reporter
Version:
Plugin to report cypress results to AIO Tests Jira
32 lines (26 loc) โข 713 B
YAML
name: CI
on:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests ๐งช
uses: cypress-io/github-action@v6
env:
AIO_API_KEY: ${{ secrets.AIO_API_KEY }}
- name: Run hosted tests
uses: cypress-io/github-action@v6
with:
config-file: cypress.config-hosted.js
env:
JIRA_PAT: ${{ secrets.JIRA_PAT }}
- name: Semantic Release ๐
uses: cycjimmy/semantic-release-action@v3
with:
branch: main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}