Skip to content

Commit 5b629b4

Browse files
authored
Merge pull request #91 from btecu/burebista
Addon V2
2 parents f2e0c1b + 2eca8d3 commit 5b629b4

File tree

90 files changed

+18072
-11878
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+18072
-11878
lines changed

.ember-cli

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

.eslintignore

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

.eslintrc.js

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

.github/workflows/ci.yml

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
name: CI
2+
3+
env:
4+
NODE_VERSION: 22
5+
6+
on:
7+
push:
8+
branches:
9+
- main
10+
- master
11+
pull_request: {}
12+
13+
concurrency:
14+
group: ci-${{ github.head_ref || github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
test:
19+
name: "Tests"
20+
runs-on: ubuntu-latest
21+
timeout-minutes: 10
22+
23+
steps:
24+
- name: Enable Corepack
25+
run: corepack enable
26+
- uses: actions/checkout@v4
27+
- name: Install Node
28+
uses: actions/setup-node@v4
29+
with:
30+
node-version: ${{ env.NODE_VERSION }}
31+
cache: yarn
32+
- name: Install Dependencies
33+
run: yarn install --immutable
34+
- name: Lint
35+
run: yarn lint
36+
- name: Run Tests
37+
run: yarn test:ember
38+
39+
floating:
40+
name: "Floating Dependencies"
41+
runs-on: ubuntu-latest
42+
timeout-minutes: 10
43+
44+
steps:
45+
- name: Enable Corepack
46+
run: corepack enable
47+
- uses: actions/checkout@v4
48+
- uses: actions/setup-node@v4
49+
with:
50+
node-version: ${{ env.NODE_VERSION }}
51+
cache: yarn
52+
- name: Install Dependencies
53+
run: yarn install --no-lockfile
54+
- name: Run Tests
55+
run: yarn test:ember
56+
57+
try-scenarios:
58+
name: ${{ matrix.try-scenario }}
59+
runs-on: ubuntu-latest
60+
needs: "test"
61+
timeout-minutes: 10
62+
63+
strategy:
64+
fail-fast: false
65+
matrix:
66+
try-scenario:
67+
- ember-lts-4.12
68+
- ember-lts-5.4
69+
- ember-release
70+
- ember-beta
71+
- ember-canary
72+
- embroider-safe
73+
- embroider-optimized
74+
75+
steps:
76+
- name: Enable Corepack
77+
run: corepack enable
78+
- uses: actions/checkout@v4
79+
- name: Install Node
80+
uses: actions/setup-node@v4
81+
with:
82+
node-version: ${{ env.NODE_VERSION }}
83+
cache: yarn
84+
- name: Install Dependencies
85+
run: yarn install --immutable
86+
- name: Run Tests
87+
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}

.gitignore

Lines changed: 8 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,13 @@
1-
# See https://help.github.com/ignore-files/ for more about ignoring files.
2-
31
# compiled output
4-
/dist/
5-
/tmp/
2+
dist/
3+
tmp/
64

75
# dependencies
8-
/bower_components/
9-
/node_modules/
6+
node_modules/
107

118
# misc
12-
/.env*
13-
/.pnp*
14-
/.sass-cache
15-
/.eslintcache
16-
/connect.lock
17-
/coverage/
18-
/libpeerconnection.log
19-
/npm-debug.log*
20-
/testem.log
21-
/yarn-error.log
22-
23-
# ember-try
24-
/.node_modules.ember-try/
25-
/bower.json.ember-try
26-
/package.json.ember-try
9+
.DS_Store
10+
.env*
11+
.eslintcache
12+
.yarn
13+
yarn-error.log

.npmignore

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

.prettierignore

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

.prettierrc.js

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

.template-lintrc.js

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

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ jobs:
4646

4747
# we recommend new addons test the current and previous LTS
4848
# as well as latest stable release (bonus points to beta/canary)
49-
- env: EMBER_TRY_SCENARIO=ember-lts-3.20
5049
- env: EMBER_TRY_SCENARIO=ember-lts-3.24
50+
- env: EMBER_TRY_SCENARIO=ember-lts-3.28
5151
- env: EMBER_TRY_SCENARIO=ember-release
5252
- env: EMBER_TRY_SCENARIO=ember-beta
5353
- env: EMBER_TRY_SCENARIO=ember-canary

0 commit comments

Comments
 (0)