-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1863 from Kajabi/develop
Next Version Bump
- Loading branch information
Showing
35 changed files
with
432 additions
and
660 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
KAJABI_PRODUCTS_PATH= | ||
KAJABI_PRODUCTS_PATH="/home/username/path/to/kajabi-products" | ||
NODE_OPTIONS="--openssl-legacy-provider" |
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,31 +1,72 @@ | ||
name: Lint-Test-Build | ||
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
pull_request: | ||
|
||
jobs: | ||
lint_test_build: | ||
name: Lint, Test, Build | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: ${{ fromJSON(vars.NODE_VERSIONS) }} | ||
steps: | ||
- name: Clone Sage-Lib Repo | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set Node Version | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "16" | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install Yarn | ||
run: npm install -g yarn | ||
env: | ||
NODE_VERSION: ${{ matrix.node-version }} | ||
run: | | ||
if [[ $NODE_VERSION == '18' ]]; then | ||
NODE_OPTIONS=--openssl-legacy-provider npm install -g yarn | ||
else | ||
npm install -g yarn | ||
fi | ||
- name: Yarn Install | ||
run: yarn install | ||
env: | ||
NODE_VERSION: ${{ matrix.node-version }} | ||
run: | | ||
if [[ $NODE_VERSION == '18' ]]; then | ||
NODE_OPTIONS=--openssl-legacy-provider yarn install | ||
else | ||
yarn install | ||
fi | ||
- name: Yarn Lint | ||
run: yarn lint | ||
env: | ||
NODE_VERSION: ${{ matrix.node-version }} | ||
run: | | ||
if [[ $NODE_VERSION == '18' ]]; then | ||
NODE_OPTIONS=--openssl-legacy-provider yarn lint | ||
else | ||
yarn lint | ||
fi | ||
- name: Yarn Test | ||
run: yarn test | ||
env: | ||
NODE_VERSION: ${{ matrix.node-version }} | ||
run: | | ||
if [[ $NODE_VERSION == '18' ]]; then | ||
NODE_OPTIONS=--openssl-legacy-provider yarn test | ||
else | ||
yarn test | ||
fi | ||
- name: Yarn Build | ||
run: yarn build | ||
env: | ||
NODE_VERSION: ${{ matrix.node-version }} | ||
run: | | ||
if [[ $NODE_VERSION == '18' ]]; then | ||
NODE_OPTIONS=--openssl-legacy-provider yarn build | ||
else | ||
yarn build | ||
fi |
Oops, something went wrong.