-
-
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.
- Loading branch information
Showing
6 changed files
with
5,835 additions
and
4,711 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 |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
steps: | ||
# The first step is to check out the repository code | ||
- name: Checking out repository code | ||
uses: actions/[email protected].2 # Action for checking out a repo. | ||
uses: actions/[email protected].4 # Action for checking out a repo. | ||
with: | ||
fetch-depth: 0 # Fetches all history for all branches and tags | ||
|
||
|
@@ -50,12 +50,12 @@ jobs: | |
|
||
strategy: # Allows you to create a matrix for job configuration. | ||
matrix: | ||
node-version: [18.x, 19.x, 20.x] # Running tests across different environments. | ||
node-version: [18.x, 19.x, 20.x, 21.x] # Running tests across different environments. | ||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | ||
|
||
steps: # The sequence of tasks that make up a job. | ||
- name: Checking out repository code | ||
uses: actions/[email protected].2 # Action for checking out a repo. | ||
uses: actions/[email protected].4 # Action for checking out a repo. | ||
|
||
- name: Setup Node.js ${{ matrix.node-version }} Environment | ||
uses: actions/[email protected] # Action for setting up Node environment. | ||
|
@@ -66,7 +66,7 @@ jobs: | |
uses: pnpm/[email protected] # Action for setting up pnpm. | ||
id: pnpm-install | ||
with: | ||
version: ^8 | ||
version: ^9 | ||
run_install: false | ||
|
||
- name: Capture pnpm store directory | ||
|
@@ -110,7 +110,7 @@ jobs: | |
steps: | ||
# Checkout the repository code | ||
- name: Checkout code | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].4 | ||
with: | ||
fetch-depth: 0 # Fetches all history for all branches and tags | ||
|
||
|
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
steps: | ||
# Checks out the repository code under $GITHUB_WORKSPACE, so the job can access it | ||
- name: Checkout Repository Code | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].4 | ||
|
||
# This step uses the Git Flow Action to create PRs based on branch types | ||
- name: Execute Git Flow Action | ||
|
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
steps: | ||
# Checkout the code. | ||
- name: Checkout code | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].4 | ||
|
||
# Set up Node.js environment. | ||
- name: Set up Node.js environment | ||
|
@@ -35,7 +35,7 @@ jobs: | |
- name: Install pnpm package manager | ||
uses: pnpm/[email protected] | ||
with: | ||
version: ^8 | ||
version: ^9 | ||
run_install: false | ||
|
||
# Clean up the repository. | ||
|
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.