1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00

Feature/ignore node modules (#166)

* 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 <tats.u@live.jp>
This commit is contained in:
shimataro 2021-02-08 22:19:05 +09:00 committed by GitHub
parent 47a775a015
commit a988908393
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 1068 additions and 1238 deletions

View file

@ -3,8 +3,7 @@
# - git; I believe you have already installed.
# - sed; GNU sed is preferred. POSIX sed may not work.
# - perl; Already installed on most of unix system.
set -e
set -eu
BASE_BRANCH="develop"

View file

@ -2,8 +2,7 @@
# requires following packages:
# - git; I believe it's already installed.
# - sed; GNU sed is preferred. POSIX sed may not work.
set -e
set -eu
COLOR_ERROR="\e[1;41m"
COLOR_SECTION="\e[1;34m"
@ -105,7 +104,7 @@ function commit_changes() {
rm -rf node_modules
npm ci --only=production
git add CHANGELOG.md package.json package-lock.json node_modules lib
git add CHANGELOG.md package.json package-lock.json lib
git commit -m "version ${VERSION}"
}

View file

@ -1,6 +1,5 @@
#!/bin/bash
set -e
set -eu
npm ci
npm run build
@ -8,4 +7,4 @@ npm run verify
rm -rf node_modules
npm ci --only=production
git add node_modules lib
git add lib

View file

@ -1,7 +1,6 @@
#!/bin/bash
# update dependencies
set -e
set -eu
DATE=$(date +"%Y%m%d")
BRANCH=feature/update-dependencies-${DATE}
@ -25,9 +24,7 @@ npm run build
npm run verify
# commit
rm -rf node_modules
npm ci --only=production
git add package.json package-lock.json node_modules
git add package.json package-lock.json lib
git commit -m "update dependencies"
# finished!