[jira-client] Log additional context for connect installation #500
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
on: [pull_request] | |
jobs: | |
verify-app: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
- name: Setup node | |
uses: actions/setup-node@bea5baf987ba7aa777a8a0b4ace377a21c45c381 # v3 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
- name: Install | |
run: npm ci | |
- name: Build the app | |
run: npm run build | |
- name: Check lint errors | |
run: npm run lint | |
- name: Check formatting errors | |
run: npm run format:check | |
- name: Run unit tests | |
run: npm run test:unit | |
- name: Run integration tests | |
run: npm run test:it:ci | |
- name: Build Docker image | |
run: docker build . |