Remove absolute paths

This commit is contained in:
CrazyMax
2020-04-08 00:26:27 +02:00
parent fbe3727991
commit 29273a44aa
129 changed files with 143 additions and 1009 deletions

View File

@@ -13,9 +13,10 @@ Contributions to this project are [released](https://help.github.com/articles/gi
5. Make your change, add tests, and make sure the tests still pass
6. Compile your Typescript code: `npm run build`
7. Format your code: `npm run format`
8. Prune dependencies: `npm prune --production`
9. Push to your fork and [submit a pull request](https://github.com/crazy-max/ghaction-upx/compare)
10. Pat your self on the back and wait for your pull request to be reviewed and merged.
8. Install build dependencies: `npm run build-dep`
9. Prune dependencies: `npm run prune`
10. Push to your fork and [submit a pull request](https://github.com/crazy-max/ghaction-upx/compare)
11. Pat your self on the back and wait for your pull request to be reviewed and merged.
Here are a few things you can do that will increase the likelihood of your pull request being accepted:

View File

@@ -28,8 +28,8 @@ jobs:
-
name: Prune prod
run: |
rm -rf node_modules
npm install --production
npm run build-dep
npm run prune
-
name: Set up Git
env:

View File

@@ -48,9 +48,8 @@ jobs:
-
name: NPM production deps
run: |
rm -rf node_modules
sed -i '/node_modules/d' .gitignore
npm install --production
npm run build-dep
npm run prune
-
name: Commit and push changes
run: |

View File

@@ -25,8 +25,8 @@ jobs:
-
name: Prune prod
run: |
rm -rf node_modules
npm install --production
npm run build-dep
npm run prune
-
name: Check for uncommitted changes
run: |