Skip to content

chore(main): release iapp 1.3.4 #116

chore(main): release iapp 1.3.4

chore(main): release iapp 1.3.4 #116

Workflow file for this run

name: CLI PR checks
on:
pull_request:
paths: ['cli/**']
concurrency:
group: ${{ github.ref }}-cli-pr-checks
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: 'cli/npm-shrinkwrap.json'
- name: Install dependencies
working-directory: cli
run: npm ci
- name: Build
working-directory: cli
run: npm run build
- name: Check format
working-directory: cli
run: npm run check-format
- name: Lint
working-directory: cli
run: npm run lint
- name: Install iapp cli
working-directory: cli
run: |
npm i -g .
iapp -h
- name: Test
working-directory: cli
run: |
npm run test
npm-dry-run:
uses: ./.github/workflows/reusable-cli-npm.yml
with:
dry-run: true