Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V2 addon format and switch to pnpm, change localization and styles setup #1911

Merged
merged 16 commits into from
Jan 8, 2024
Merged
Prev Previous commit
Next Next commit
try-scenarios
  • Loading branch information
AmauryD committed Dec 18, 2023
commit 572cbf07cea1002498004ef652ccd040f1bf814c
34 changes: 33 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,40 @@ jobs:
run: pnpm install --frozen-lockfile
- name: Run Tests
run: pnpm test
try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: "test"
timeout-minutes: 10

strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-4.4
- ember-lts-4.8
- ember-release
- ember-beta
- ember-canary
- embroider-safe
- embroider-optimized

steps:
- uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16.x
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run Tests
working-directory: test-app
run: pnpm ember try:one ${{ matrix.try-scenario }}
automerge:
needs: [test]
needs: [test, try-scenarios]
runs-on: ubuntu-latest
permissions:
pull-requests: write
Expand Down
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"eslint.validate": [
"glimmer-ts",
"glimmer-js"
]
}
39 changes: 39 additions & 0 deletions ember-flatpickr/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,42 @@

# npm/pnpm/yarn pack output
*.tgz

# compiled output
/dist/
/tmp/

# dependencies
/bower_components/
/node_modules/
node_modules/

# misc
/.env*
/.pnp*
/.sass-cache
/.eslintcache
/connect.lock
/coverage/
/libpeerconnection.log
/npm-debug.log*
/testem.log
/yarn-error.log

# ember-try
/.node_modules.ember-try/
/bower.json.ember-try
/npm-shrinkwrap.json.ember-try
/package.json.ember-try
/package-lock.json.ember-try
/yarn.lock.ember-try

# broccoli-debug
/DEBUG/

.idea/
.env*
.pnpm-debug.log
npm-debug.log*
yarn-error.log
.eslintcache
Loading