mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2025-12-09 14:30:42 -07:00
Remove absolute paths
This commit is contained in:
7
.github/CONTRIBUTING.md
vendored
7
.github/CONTRIBUTING.md
vendored
@@ -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:
|
||||
|
||||
|
||||
4
.github/workflows/master.yml
vendored
4
.github/workflows/master.yml
vendored
@@ -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:
|
||||
|
||||
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
@@ -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: |
|
||||
|
||||
4
.github/workflows/uncommited.yml
vendored
4
.github/workflows/uncommited.yml
vendored
@@ -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: |
|
||||
|
||||
Reference in New Issue
Block a user