Skip to content

Commit

Permalink
Feature/ignore node modules (#166)
Browse files Browse the repository at this point in the history
* Ignore Node files that should not be tracked

The list can be fetched by `gibo dump node`.

* Untrack node_modules/@actions

* Cache node_modules

* Don't add node_modules ins Bash scripts

* Use ncc to pack dependencies

* Change final product path

Remove & ignore previous one (lib/main.js{,.map})

* Disable PR check using author's key

Author's key is not passed to PR builds (#164)

* update settings

* update CHANGELOG

* update build.yml

Co-authored-by: Tatsunori Uchino <[email protected]>
  • Loading branch information
shimataro and tats-u authored Feb 8, 2021
1 parent 47a775a commit a988908
Show file tree
Hide file tree
Showing 25 changed files with 1,068 additions and 1,238 deletions.
1 change: 0 additions & 1 deletion .github/workflows/verify-on-macos-1015.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ name: macOS Catalina

on:
- push
- pull_request

jobs:
ssh:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/verify-on-ubuntu-1604.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ name: Ubuntu 16.04

on:
- push
- pull_request

jobs:
ssh:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/verify-on-ubuntu-1804.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ name: Ubuntu 18.04

on:
- push
- pull_request

jobs:
ssh:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/verify-on-ubuntu-2004.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ name: Ubuntu 20.04

on:
- push
- pull_request

jobs:
ssh:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/verify-on-windows-server-2019.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ name: Windows Server 2019

on:
- push
- pull_request

jobs:
ssh:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ Thumbs.db
# patch/merge
*.orig
*.rej

# Node.js modules
/node_modules/
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Changed

* Bundle dependencies (thanks [@tats-u](https://github.com/tats-u))

### Fixed

* comments in README (thanks [@KimSoungRyoul](https://github.com/KimSoungRyoul))
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ inputs:
default: ""
runs:
using: "node12"
main: "lib/main.js"
main: "lib/index.js"
Loading

0 comments on commit a988908

Please sign in to comment.