Merge pull request #1430 from DependencyTrack/dependabot/github_actio… #1019
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: i18n | |
| on: | |
| push: | |
| branches: | |
| - 'master' # Default branch | |
| - 'feature-**' # Feature branches | |
| pull_request: | |
| branches: | |
| - 'master' # Default branch | |
| - 'feature-**' # Feature branches | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6.0.2 | |
| - name: Set up NodeJs | |
| uses: actions/setup-node@v6.2.0 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install Dependencies | |
| run: npm install | |
| - name: Check for Translations | |
| run: | | |
| mv src/assets/scss/vendors/chart.js src/assets/scss/vendors/chart.js.skip | |
| npm run vue-i18n-extract | |
| continue-on-error: false |