Skip to content

Commit 7463202

Browse files
committed
Merge branch 'main' of github.com:patricklx/eslint-plugin-ember-template-lint
# Conflicts: # package.json
2 parents 08f0568 + 201fba0 commit 7463202

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ ubuntu ]
20-
node-version: [14.x, 16.x, 18.x]
20+
node-version: [18.x, 20.x, 22.x]
2121

2222
steps:
2323
- uses: actions/checkout@v4
@@ -35,6 +35,10 @@ jobs:
3535
- run: npm run test -- --runInBand
3636

3737
deploy:
38+
permissions:
39+
contents: write
40+
deployments: write
41+
3842
needs: [ test ]
3943
if: github.ref == 'refs/heads/main'
4044
runs-on: ubuntu-latest
@@ -44,7 +48,7 @@ jobs:
4448
steps:
4549
- uses: actions/checkout@v4
4650
with:
47-
ssh-key: ${{ secrets.DEPLOY_KEY }}
51+
token: ${{ secrets.GITHUB_TOKEN }}
4852
- name: Use Node.js
4953
uses: actions/setup-node@v3
5054
with:

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Changelog
22

33

4+
## 0.16.0 (2024-11-25)
5+
6+
#### :rocket: Enhancement
7+
* [#135](https://github.com/patricklx/eslint-plugin-ember-template-lint/pull/135) use ember-eslint-plugin ([@patricklx](https://github.com/patricklx))
8+
9+
#### Committers: 1
10+
- Patrick Pircher ([@patricklx](https://github.com/patricklx))
11+
12+
413

514

615

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-ember-template-lint",
3-
"version": "0.15.0",
3+
"version": "0.16.0",
44
"description": "Provide linting for ember template",
55
"keywords": [
66
"eslint",
@@ -20,6 +20,7 @@
2020
"@typescript-eslint/parser": "^5.59.7",
2121
"@typescript-eslint/typescript-estree": "^5.59.7",
2222
"ember-eslint-parser": "^0.5.6",
23+
"ember-template-recast": "^6.1.5",
2324
"ember-template-lint": "^6.0.0",
2425
"prettier-linter-helpers": "^1.0.0",
2526
"synckit": "^0.8.5",

0 commit comments

Comments
 (0)