Bump version #22
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: Check CloudApp | |
on: | |
push: | |
branches: ["develop"] | |
paths: | |
[ | |
"package.json", | |
"package-lock.json", | |
"cloudapp/src/**", | |
".github/workflows/**", | |
] | |
pull_request: | |
branches: ["main"] | |
paths: | |
[ | |
"package.json", | |
"package-lock.json", | |
"cloudapp/src/**", | |
".github/workflows/**", | |
] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js 13.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 13.x | |
# - name: Audit ('npm audit') | |
# run: | | |
# npm ci | |
# npm audit --audit-level=critical | |
- name: Build CloudApp ('eca build') | |
run: | | |
npm ci | |
npm i -g @exlibris/exl-cloudapp-cli | |
eca build | grep 'Generated' |