Skip to content

Commit a9c2ef9

Browse files
committed
Allow ember-template-lint v5
1 parent 6a5bc95 commit a9c2ef9

3 files changed

Lines changed: 917 additions & 69 deletions

File tree

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,25 @@ jobs:
5353

5454
- run: yarn test
5555

56+
ember-template-lint:
57+
name: ember-template-lint@${{ matrix.etlVersion }}
58+
needs: [test]
59+
runs-on: ubuntu-latest
60+
timeout-minutes: 10
61+
62+
strategy:
63+
matrix:
64+
etlVersion: [^4.0.0, 5.0.0-alpha.0]
65+
66+
steps:
67+
- uses: actions/checkout@v2
68+
- uses: volta-cli/action@v1
69+
with:
70+
node-version: 16.x
71+
- run: yarn install --frozen-lockfile
72+
- run: yarn add ember-template-lint@${{ matrix.etlVersion }} --dev
73+
- run: yarn test
74+
5675
floating-dependencies:
5776
name: Floating Dependencies
5877
runs-on: ubuntu-latest

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"prettier-linter-helpers": "^1.0.0"
3434
},
3535
"devDependencies": {
36-
"ember-template-lint": "^4.0.0-beta.3",
36+
"ember-template-lint": "^4.0.0",
3737
"eslint": "^8.2.0",
3838
"eslint-config-prettier": "^8.3.0",
3939
"eslint-plugin-node": "^11.0.0",
@@ -47,8 +47,8 @@
4747
"release-it-lerna-changelog": "^4.0.1"
4848
},
4949
"peerDependencies": {
50-
"ember-template-lint": "^4.0.0",
51-
"prettier": ">=1.18.1"
50+
"ember-template-lint": ">= 4.0.0",
51+
"prettier": ">= 1.18.1"
5252
},
5353
"engines": {
5454
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"

0 commit comments

Comments
 (0)