Skip to content

Commit 07617eb

Browse files
authored
Merge pull request #21193 from emberjs/smoke-tests/update-app-template
2 parents 8e68f51 + c59f7c9 commit 07617eb

28 files changed

+947
-1413
lines changed

pnpm-lock.yaml

Lines changed: 587 additions & 1228 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

smoke-tests/app-template/.eslintignore

Lines changed: 0 additions & 25 deletions
This file was deleted.

smoke-tests/app-template/.eslintrc.js

Lines changed: 0 additions & 53 deletions
This file was deleted.
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
pull_request: {}
9+
10+
concurrency:
11+
group: ci-${{ github.head_ref || github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
lint:
16+
name: "Lint"
17+
runs-on: ubuntu-latest
18+
timeout-minutes: 10
19+
20+
steps:
21+
- uses: actions/checkout@v3
22+
- name: Install Node
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: 18
26+
cache: npm
27+
- name: Install Dependencies
28+
run: npm ci
29+
- name: Lint
30+
run: npm run lint
31+
32+
test:
33+
name: "Test"
34+
runs-on: ubuntu-latest
35+
timeout-minutes: 10
36+
37+
steps:
38+
- uses: actions/checkout@v3
39+
- name: Install Node
40+
uses: actions/setup-node@v3
41+
with:
42+
node-version: 18
43+
cache: npm
44+
- name: Install Dependencies
45+
run: npm ci
46+
- name: Run Tests
47+
run: npm test
Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,18 @@
1-
# See https://help.github.com/ignore-files/ for more about ignoring files.
2-
# This smoke test ensures that a stable new'd app can run with latest ember-source
3-
# and not having the lock file will help us catch issues that maybe come from elsewhere.
4-
yarn.lock
5-
pnpm-lock.yaml
6-
71
# compiled output
82
/dist/
9-
/tmp/
3+
/declarations/
104

115
# dependencies
12-
/bower_components/
136
/node_modules/
147

158
# misc
169
/.env*
1710
/.pnp*
18-
/.sass-cache
1911
/.eslintcache
20-
/connect.lock
2112
/coverage/
22-
/libpeerconnection.log
2313
/npm-debug.log*
2414
/testem.log
2515
/yarn-error.log
2616

27-
# ember-try
28-
/.node_modules.ember-try/
29-
/bower.json.ember-try
30-
/npm-shrinkwrap.json.ember-try
31-
/package.json.ember-try
32-
/package-lock.json.ember-try
33-
/yarn.lock.ember-try
34-
3517
# broccoli-debug
3618
/DEBUG/
Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,13 @@
11
# unconventional js
22
/blueprints/*/files/
3-
/vendor/
43

54
# compiled output
65
/dist/
7-
/tmp/
8-
9-
# dependencies
10-
/bower_components/
11-
/node_modules/
126

137
# misc
148
/coverage/
159
!.*
16-
.eslintcache
17-
.lint-todo/
18-
19-
# ember-try
20-
/.node_modules.ember-try/
21-
/bower.json.ember-try
22-
/npm-shrinkwrap.json.ember-try
23-
/package.json.ember-try
24-
/package-lock.json.ember-try
25-
/yarn.lock.ember-try
10+
.*/
11+
/pnpm-lock.yaml
12+
ember-cli-update.json
13+
*.html
Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
'use strict';
22

33
module.exports = {
4-
singleQuote: true,
4+
plugins: ['prettier-plugin-ember-template-tag'],
5+
overrides: [
6+
{
7+
files: '*.{js,gjs,ts,gts,mjs,mts,cjs,cts}',
8+
options: {
9+
singleQuote: true,
10+
templateSingleQuote: false,
11+
},
12+
},
13+
],
514
};
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# unconventional files
2+
/blueprints/*/files/
3+
4+
# compiled output
5+
/dist/
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
module.exports = {
4+
extends: ['stylelint-config-standard'],
5+
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"ignore_dirs": ["tmp", "dist"]
2+
"ignore_dirs": ["dist"]
33
}

0 commit comments

Comments
 (0)