Skip to content

Commit

Permalink
Merge pull request #10 from embroider-build/tests
Browse files Browse the repository at this point in the history
add a basic smoke test
  • Loading branch information
mansona authored May 24, 2024
2 parents 7911115 + 9cdf75a commit b2adb75
Show file tree
Hide file tree
Showing 5 changed files with 1,003 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:
- main

jobs:
lint:
name: Lint
test:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -22,3 +22,4 @@ jobs:
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm test
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
"test": "vitest"
},
"dependencies": {
"ember-cli": "^5.8.1",
Expand All @@ -25,8 +25,11 @@
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"execa": "^9.1.0",
"globals": "^15.3.0",
"prettier": "^3.2.5",
"release-plan": "^0.9.0"
"release-plan": "^0.9.0",
"tmp-promise": "^3.0.3",
"vitest": "^1.6.0"
}
}
Loading

0 comments on commit b2adb75

Please sign in to comment.