feat: provide option to disable the automatic translation of formly s… #3170
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: Updates | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- develop | |
- upgrade/** | |
- update/** | |
# schedule: | |
# - cron: '0 0 * * *' | |
env: | |
NODE_VERSION: 18.16.0 | |
jobs: | |
Updates: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: npm | |
- name: Install root dependencies | |
run: npm ci | |
- name: Install e2e dependencies | |
run: cd e2e && npm i | |
- name: Possible Angular Updates | |
if: always() | |
run: npm run ng -- update | |
- name: Possible npm Updates | |
if: always() | |
run: npm outdated --long || true | |
- name: Production npm audit | |
run: npm audit --omit=dev || true | |
if: always() | |
- name: Better NPM Audit (for relevant vulnerability checking) | |
run: npm run audit --production | |
if: always() | |
- name: Peer Dependency Incompatibilities | |
if: always() | |
run: npm ls -a >/dev/null || true | |
- name: npm audit -- PWA | |
if: always() | |
run: npm audit || true | |
- name: npm audit -- e2e | |
if: always() | |
run: | | |
npm --prefix e2e outdated --long || true | |
npm --prefix e2e audit || true | |
- name: browserslist | |
if: always() | |
run: npx browserslist || true |