-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies and implement github actions
- Loading branch information
Adam Coulthard
committed
May 24, 2024
1 parent
1683280
commit 14e8e44
Showing
8 changed files
with
549 additions
and
84 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,27 @@ | ||
name: Node CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build_and_test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: npm install, build, and test | ||
run: | | ||
echo "Running npm install" | ||
npm install | ||
echo "Running npm run build" | ||
npm run build | ||
echo "Running npm run test:unit" | ||
npm run test:unit || true | ||
- name: npm pack | ||
run: | | ||
echo "Running npm pack" | ||
npm pack | ||
- name: Archive package | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: zowe-cli-cics-deploy-plugin | ||
path: zowe-cli-cics-deploy-plugin-*.tgz |
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.