-
-
Notifications
You must be signed in to change notification settings - Fork 66
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 #696 from Belphemur/develop
release
- Loading branch information
Showing
9 changed files
with
2,990 additions
and
4,083 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: NodeJs | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{secrets.NPM_TOKEN }} | ||
NODEJS: 18 | ||
NODEJS: "lts/*" | ||
YARN_CACHE: "yarn-cache" | ||
|
||
on: | ||
|
@@ -16,9 +16,9 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node: [ '14', '16', '18' ] | ||
node: ['lts/-1', 'lts/*', 'current' ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set yarn cache | ||
run: yarn config set cache-folder ${{env.YARN_CACHE}} | ||
- name: Cache node modules | ||
|
@@ -29,7 +29,7 @@ jobs: | |
path: ${{env.YARN_CACHE}} | ||
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | ||
- name: Setup Node.js ${{ matrix.node }} | ||
uses: actions/setup-node@v3.6.0 | ||
uses: actions/setup-node@v3.8.1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: Install dependencies | ||
|
@@ -43,7 +43,7 @@ jobs: | |
ci-cd-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set yarn cache | ||
run: yarn config set cache-folder ${{env.YARN_CACHE}} | ||
- name: Cache node modules | ||
|
@@ -54,7 +54,7 @@ jobs: | |
path: ${{env.YARN_CACHE}} | ||
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | ||
- name: Setup Node.js ${{env.NODEJS}} | ||
uses: actions/setup-node@v3.6.0 | ||
uses: actions/setup-node@v3.8.1 | ||
with: | ||
node-version: ${{env.NODEJS}} | ||
- name: Install dependencies | ||
|
@@ -66,11 +66,11 @@ jobs: | |
if: github.ref == 'refs/heads/master' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set yarn cache | ||
run: yarn config set cache-folder ${{env.YARN_CACHE}} | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3.6.0 | ||
uses: actions/setup-node@v3.8.1 | ||
with: | ||
node-version: ${{env.NODEJS}} | ||
- name: Cache node modules | ||
|
@@ -85,7 +85,7 @@ jobs: | |
- name: Build package | ||
run: yarn build:doc | ||
- name: Deploy 🚀 | ||
uses: JamesIves/[email protected].1 | ||
uses: JamesIves/[email protected].3 | ||
with: | ||
branch: gh-pages # The branch the action should deploy to. | ||
folder: docs # The folder the action should deploy. | ||
|
@@ -95,11 +95,11 @@ jobs: | |
if: github.ref == 'refs/heads/master' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set yarn cache | ||
run: yarn config set cache-folder ${{env.YARN_CACHE}} | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3.6.0 | ||
uses: actions/setup-node@v3.8.1 | ||
with: | ||
node-version: ${{env.NODEJS}} | ||
- name: Cache node modules | ||
|
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
Oops, something went wrong.