forked from niki-timofe/verdaccio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: website heap size and website.yml path (verdaccio#2352)
- Loading branch information
Sergio Moreno
authored
Jul 27, 2021
1 parent
28ce2a9
commit 25a4601
Showing
1 changed file
with
4 additions
and
2 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 |
---|---|---|
|
@@ -9,18 +9,20 @@ on: | |
paths: | ||
- 'website/**' | ||
- 'package.json' | ||
- './github/workflows/website.yml' | ||
- './.github/workflows/website.yml' | ||
push: | ||
branches: | ||
- 'master' | ||
paths: | ||
- 'website/**' | ||
- 'package.json' | ||
- './github/workflows/website.yml' | ||
- './.github/workflows/website.yml' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
NODE_OPTIONS: --max_old_space_size=4096 | ||
steps: | ||
- uses: actions/[email protected] | ||
|
||
|