-
-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #511 from adopted-ember-addons/release-prep
Prep for Release (v5, Major)
- Loading branch information
Showing
27 changed files
with
13,408 additions
and
13,080 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Build and Assert Assets Exists | ||
description: Build the package and assert that file contents exist as we expect | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Build and Assert Output | ||
shell: bash | ||
run: |- | ||
echo ' | ||
target: ./addon/dist | ||
setup: | ||
run: pnpm build | ||
cwd: ./addon/ | ||
expect: | | ||
modifiers/sortable-group.js | ||
modifiers/sortable-group.js.map | ||
modifiers/sortable-handle.js | ||
modifiers/sortable-handle.js.map | ||
modifiers/sortable-item.js | ||
modifiers/sortable-item.js.map | ||
test-support/index.js | ||
test-support/index.js.map | ||
' >> assert-contents.config.yml | ||
npx assert-folder-contents | ||
- name: Upload dist assets to cache | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: dist | ||
path: ./addon/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Download built package from cache | ||
description: Download built package from cache | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Download built package from cache | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: dist | ||
path: ./addon/dist | ||
|
||
# https://github.com/pnpm/pnpm/issues/4965 | ||
- name: 'Install dependencies' | ||
shell: 'bash' | ||
run: pnpm install --force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Setup node and package manager | ||
description: Setup node and install dependencies using the package manager | ||
runs: | ||
using: "composite" | ||
steps: | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: 7 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
cache: 'pnpm' | ||
- name: 'Install dependencies' | ||
shell: 'bash' | ||
run: pnpm install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.