-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Created packages. Fixed building. Signed-off-by: Peter Haumer <[email protected]> * VSIX patch script. Fixed launches. Signed-off-by: Peter Haumer <[email protected]> * Added vscode-nls to webpack Signed-off-by: Peter Haumer <[email protected]> * Simplified webpack config * Move eslint plugin devDependency * Switch github actions to yarn * Switch theia github action to yarn * Use yarn for installs and script running * Extracted explorer-api and refactored Signed-off-by: Peter Haumer <[email protected]> * Added prettier Signed-off-by: Peter Haumer <[email protected]> * Renamed pub folder to dist Signed-off-by: Peter Haumer <[email protected]> * add/update scripts for pre/posttest:integration Signed-off-by: Billie Simmons <[email protected]> * Added ftp package files Signed-off-by: Peter Haumer <[email protected]> * Enabling webpack for FTP Signed-off-by: Peter Haumer <[email protected]> * Fixed eslint for ftp Signed-off-by: Peter Haumer <[email protected]> * Added FTP launch Signed-off-by: Peter Haumer <[email protected]> * Add DCO signoff for past commits * Pretty 120 zowe explorer Signed-off-by: Peter Haumer <[email protected]> * Pretty 120 api Signed-off-by: Peter Haumer <[email protected]> * Pretty 120 ftp Signed-off-by: Peter Haumer <[email protected]> * Prettier top level Signed-off-by: Peter Haumer <[email protected]> * Merging 1.10 master branch Signed-off-by: Peter Haumer <[email protected]> * Prettier 120/4 Signed-off-by: Peter Haumer <[email protected]> * Removed test profile Signed-off-by: Peter Haumer <[email protected]> * Updated gitignore Signed-off-by: Peter Haumer <[email protected]> * Add missing messages Signed-off-by: zFernand0 <[email protected]> * yarn package fixes Signed-off-by: Peter Haumer <[email protected]> * Move testProfileData.ts file creation to a script in zowe-explorer. Remove it from workflow. Trigger workflow only on changes to the zowe-explorer package Signed-off-by: zFernand0 <[email protected]> * Quick fix for uploading test results Signed-off-by: zFernand0 <[email protected]> * yarn and vsce devDeps Signed-off-by: Peter Haumer <[email protected]> * Profiles split Signed-off-by: Peter Haumer <[email protected]> * add yarnrc file Signed-off-by: zFernand0 <[email protected]> * Fixed imports Signed-off-by: Peter Haumer <[email protected]> * String updates Signed-off-by: Peter Haumer <[email protected]> * Moved another UI method Signed-off-by: Peter Haumer <[email protected]> * Update filepaths for monorepo Signed-off-by: Lauren Li <[email protected]> Co-authored-by: Vit Gottwald <[email protected]> Co-authored-by: Billie Simmons <[email protected]> Co-authored-by: zFernand0 <[email protected]> Co-authored-by: Lauren Li <[email protected]> Signed-off-by: zFernand0 <[email protected]>
- Loading branch information
Showing
357 changed files
with
27,070 additions
and
30,614 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 |
---|---|---|
|
@@ -20,4 +20,4 @@ coverage: | |
if_no_uploads: success | ||
if_not_found: success | ||
if_ci_failed: error | ||
changes: no | ||
changes: no |
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,13 @@ | ||
root = true | ||
|
||
[*] | ||
insert_final_newline = true | ||
end_of_line = lf | ||
indent_style = space | ||
max_line_length = 120 | ||
|
||
[*.{js,ts,css}] | ||
indent_size = 4 | ||
|
||
[*.{json,yml,md}] | ||
indent_size = 2 |
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,3 +1,2 @@ | ||
# Set default behavior to automatically normalize line endings. | ||
* text=auto | ||
|
||
* text=auto eol=lf |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
name: Zowe Explorer CI | ||
|
||
on: [push] | ||
on: | ||
push: | ||
paths: | ||
- packages/zowe-explorer/* | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
|
@@ -16,41 +18,39 @@ jobs: | |
os: [windows-latest, ubuntu-latest, macos-latest] | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- run: npm install | ||
|
||
# run audit on 1 system to avoid overloading the audit API | ||
- name: Audit from Windows / Node 12.x | ||
run: npm audit --production --audit-level=moderate | ||
if: matrix.os == 'windows-latest' && matrix.node-version == '12.x' | ||
|
||
- name: Create test data file | ||
run: cp resources/testProfileData.example.ts resources/testProfileData.ts | ||
|
||
- run: npm run build --if-present | ||
|
||
- run: npm test | ||
env: | ||
CI: true | ||
NODE_OPTIONS: --max_old_space_size=4096 | ||
|
||
- name: Upload test results | ||
uses: actions/upload-artifact@v1 | ||
# if: matrix.os == 'windows-latest' && matrix.node-version == '12.x' | ||
with: | ||
name: results | ||
path: results/ | ||
|
||
# Run codecov upload for only one run | ||
- name: Upload Results to Codecov from Windows / Node 12.x | ||
if: matrix.os == 'windows-latest' && matrix.node-version == '12.x' | ||
uses: codecov/[email protected] | ||
with: | ||
env_vars: OS,NODE | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
# install yarn | ||
- run: npm install -g yarn | ||
|
||
- run: yarn install --frozen-lockfile | ||
|
||
# run audit on 1 system to avoid overloading the audit API | ||
- name: Audit from Windows / Node 12.x | ||
run: yarn audit --production --level=moderate | ||
if: matrix.os == 'windows-latest' && matrix.node-version == '12.x' | ||
|
||
- run: yarn test | ||
env: | ||
CI: true | ||
NODE_OPTIONS: --max_old_space_size=4096 | ||
|
||
- name: Upload test results | ||
uses: actions/upload-artifact@v1 | ||
# if: matrix.os == 'windows-latest' && matrix.node-version == '12.x' | ||
with: | ||
name: zowe-explorer-results | ||
path: package/zowe-explorer/results/ | ||
|
||
# Run codecov upload for only one run | ||
- name: Upload Results to Codecov from Windows / Node 12.x | ||
if: matrix.os == 'windows-latest' && matrix.node-version == '12.x' | ||
uses: codecov/[email protected] | ||
with: | ||
env_vars: OS,NODE |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
dist | ||
out | ||
lib | ||
results | ||
node_modules |
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 @@ | ||
printWidth: 120 |
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,5 @@ | ||
{ | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": ["esbenp.prettier-vscode"] | ||
} |
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,18 +1,27 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"files.exclude": { | ||
"out": false, | ||
"**/.classpath": true, | ||
"**/.project": true, | ||
"**/.settings": true, | ||
"**/.factorypath": true | ||
}, | ||
"search.exclude": { | ||
"out": true // set this to false to include "out" folder in search results | ||
}, | ||
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts | ||
"typescript.tsc.autoDetect": "off", | ||
// Make sure people do not accidentally forget to sign | ||
"git.alwaysSignOff": true, | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} | ||
"files.exclude": { | ||
"out": false, | ||
"**/.classpath": true, | ||
"**/.project": true, | ||
"**/.settings": true, | ||
"**/.factorypath": true | ||
}, | ||
"search.exclude": { | ||
"out": true // set this to false to include "out" folder in search results | ||
}, | ||
|
||
// Make sure people do not accidentally forget to sign | ||
"git.alwaysSignOff": true, | ||
|
||
"typescript.tsdk": "node_modules/typescript/lib", | ||
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts | ||
"typescript.tsc.autoDetect": "off", | ||
// Standardize on the Prettier formatter | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
// Enforce prettier on save | ||
"editor.formatOnSave": true, | ||
"npm.packageManager": "yarn", | ||
"eslint.packageManager": "yarn", | ||
"eslint.workingDirectories": [{ "directory": "packages/zowe-explorer-ftp-extension", "changeProcessCWD": true }] | ||
} |
Oops, something went wrong.