Skip to content

Update test to verify formatting #178

Update test to verify formatting

Update test to verify formatting #178

Workflow file for this run

name: "Quality"
on:
pull_request:
push:
branches:
- main
- 'releases/*'
paths-ignore:
- '**.md'
- 'screenshots/**'
- 'LICENSE'
- '.github/**'
- 'package.json'
- 'package-lock.json'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check lint
run: npm run lint
- name: Run unit tests
run: npm test
# Requires TEAMS_TEST_HOOK_URL to be set as secrets
- name: Run HTTP request tests
run: npm run verify
env:
TEAMS_TEST_HOOK_URL: ${{ secrets.TEAMS_TEST_HOOK_URL }}
TEAMS_TEST_HOOK_URL_2: ${{ secrets.TEAMS_TEST_HOOK_URL_2 }}
TEAMS_TEST_HOOK_URL_3: ${{ secrets.TEAMS_TEST_HOOK_URL_3 }}
- run: npm run prepare
# test action works running from the graph
- name: Test action workflow - All features
uses: ./
if: ${{ always() }}
with:
webhookUrl: ${{ secrets.TEAMS_TEST_HOOK_URL }}
message: "1. Test action workflow\r2. Second line should be displayed"
status: ${{ job.status }}
title: Test action workflow title
titleBackgroundColor: ${{ job.status }}
env:
SHOULD_DISPLAY_VIEW_RUN_BUTTON: true
SHOULD_DISPLAY_VIEW_COMMIT_BUTTON: true
SHOULD_DISPLAY_ACTOR_LABEL: true
- name: Test action workflow - Multiple webhook URLs
uses: ./
if: ${{ always() }}
with:
webhookUrl: |
${{ secrets.TEAMS_TEST_HOOK_URL }}
${{ secrets.TEAMS_TEST_HOOK_URL_2 }}
${{ secrets.TEAMS_TEST_HOOK_URL_3 }}
message: "- Multiple webhook URLs\r- Test action workflow displayed in second line"
status: ${{ job.status }}
title: Test action workflow title
titleBackgroundColor: ${{ job.status }}
env:
SHOULD_DISPLAY_VIEW_RUN_BUTTON: true
SHOULD_DISPLAY_VIEW_COMMIT_BUTTON: true
SHOULD_DISPLAY_ACTOR_LABEL: true
- name: Test action workflow - only message
uses: ./
with:
webhookUrl: ${{ secrets.TEAMS_TEST_HOOK_URL }}
message: Test action workflow - ONLY MESSAGE