jira.createIssue,updateIssue: fix custom field option labels and value formatting (patch) #3642
Workflow file for this run
This file contains hidden or 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: Node.js CI | |
| on: | |
| # push: | |
| # branches: [ dev ] | |
| pull_request: | |
| branches: [ dev ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js 24.6.0 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24.6.0 | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Cache node_modules for connectors and examples | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| src/appmixer/**/node_modules | |
| src/examples/**/node_modules | |
| key: ${{ runner.os }}-connector-npm-${{ hashFiles('src/appmixer/**/package.json', 'src/examples/**/package.json') }} | |
| - name: Install connector dependencies | |
| run: node ./scripts/npm_install.js | |
| - name: Run lint | |
| run: npm run lint | |
| - name: Run unit tests | |
| run: npm run test-unit |