-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup added
- Loading branch information
Showing
7 changed files
with
42 additions
and
72 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 |
---|---|---|
|
@@ -14,29 +14,29 @@ jobs: | |
name: "Advance App (Windows)" | ||
runs-on: windows-latest | ||
steps: | ||
- name: 📚 Checkout | ||
- name: 📚 Get Repository | ||
uses: actions/[email protected] | ||
|
||
- name: 🟢 Install Node | ||
- name: 🟢 Install Node.js 18 | ||
uses: actions/setup-node@v4 | ||
with: | ||
always-auth: true | ||
node-version: 18 | ||
scope: '@naveed235812' | ||
registry-url: https://registry.npmjs.org | ||
|
||
- name: Install Dependencies | ||
- name: Install Advance App Dependencies | ||
run: npm install | ||
|
||
- name: Build Advance App | ||
run: npm run build | ||
|
||
- name: Execute Tests | ||
- name: Execute Advance App Tests | ||
run: npm run test | ||
|
||
# # This step was added to show the output | ||
# - name: Execute Variant (Demo Purposes) | ||
# run: node ./lib/index.js | ||
# run: node ./output/RunAdvanceApp.js | ||
|
||
- name: Package Advance App | ||
run: npm pack | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
# dependencies | ||
output | ||
node_modules | ||
package-lock.json | ||
|
||
# build output | ||
lib | ||
package-lock.json |
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 |
---|---|---|
@@ -1,14 +1,9 @@ | ||
# start off ignoring everything, and then add back only the files we want | ||
* | ||
!bin/**/*.js | ||
!lib/**/*.d.ts | ||
!lib/**/*.js | ||
!public/** | ||
!package.json | ||
!lib/**/*.json | ||
!*.md | ||
src/ | ||
test/ | ||
lib/test/ | ||
.nyc_output/ | ||
.rush/ | ||
!package.json | ||
!*.md | ||
!output/**/*.d.ts | ||
!output/**/*.json | ||
!output/**/*.js | ||
output/test/ |
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
File renamed without changes.
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