Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,25 @@ jobs:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Strategy to run the job on multiple Node.js versions
strategy:
matrix:
node-version: [20, 22, 24]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v3

# Sets up the Node.js version specified in the matrix
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: ${{ matrix.node-version }}

# Installs all dependencies
- name: Install Dependencies 📌
run: npm ci

# Runs test cases
- name: Run Test Cases 🔧
run: npm run test
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.x'
- name: Configure CI Git User
run: |
git config --global user.name $CONFIG_USERNAME
Expand Down
Loading