Skip to content

Commit

Permalink
Merge pull request #14 from NullVoxPopuli/local-e2e-tests
Browse files Browse the repository at this point in the history
Resolve "Parsing error: Cannot read properties of null"
  • Loading branch information
NullVoxPopuli authored Dec 28, 2023
2 parents 2bf2995 + 24ee570 commit 45f2a3b
Show file tree
Hide file tree
Showing 10 changed files with 456 additions and 83 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
test-projects/
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ jobs:
# - uses: wyvox/action-setup-pnpm@v3
# - run: pnpm test

tests:
name: "Tests"
runs-on: ubuntu-latest
needs: [setup]
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: pnpm --filter '*' test


test_eslint-plugin-ember:
name: "eslint-plugin-ember"
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
test-projects/
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:js": "eslint .",
"lint:package": "pnpm publint",
Expand Down Expand Up @@ -55,6 +54,11 @@
"engines": {
"node": ">=16.0.0"
},
"pnpm": {
"overrides": {
"ember-eslint-parser": "workspace:*"
}
},
"peerDependencies": {
"@babel/core": "^7.23.6",
"@typescript-eslint/parser": "^6.15.0",
Expand Down
Loading

0 comments on commit 45f2a3b

Please sign in to comment.