Add Jira and Xray pings during plugin initialization #259
Workflow file for this run
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: Run Plugin Tests | |
on: | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
# manually triggered | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: "npm" | |
- name: Run tests | |
run: npm ci && npm test | |
# build plugin to check if it can still be built | |
- name: Verify plugin build | |
run: npm run build |