Skip to content

Commit

Permalink
support angular 14
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-sc committed Jun 22, 2022
1 parent fbe86a4 commit 58b005c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,23 @@ jobs:
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
angular-version: [13.1.4, 14.0.2]
exclude:
- node-version: 12.x
angular-version: 14.0.2
include:
- angular-version: 13.1.4
devkit-version: 0.1301.4
- angular-version: 14.0.2
devkit-version: 0.1400.2

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i --package-lock-only "@angular-devkit/architect@${{ matrix.devkit-version }}" "@angular-devkit/core@${{ matrix.angular-version }}" "@angular-devkit/schematics@${{ matrix.angular-version }}" "@schematics/angular@${{ matrix.angular-version }}"
- run: npm ci
- run: npm run build
- run: npm run test-coverage
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
"homepage": "https://github.com/daniel-sc/ng-extract-i18n-merge#readme",
"dependencies": {
"@angular-devkit/architect": "^0.1301.0",
"@angular-devkit/core": "^13.0.0",
"@angular-devkit/schematics": "^13.0.0",
"@schematics/angular": "^13.0.0",
"@angular-devkit/core": "^13.0.0 || ^14.0.0",
"@angular-devkit/schematics": "^13.0.0 || ^14.0.0",
"@schematics/angular": "^13.0.0 || ^14.0.0",
"xliff-simple-merge": "~0.12.1",
"xml_normalize": "~0.8.4",
"xmldoc": "~1.1.2"
Expand Down

0 comments on commit 58b005c

Please sign in to comment.