Skip to content

Commit 02bf3e5

Browse files
authored
Update main.yaml
1 parent c3eb7b5 commit 02bf3e5

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

.github/workflows/main.yaml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,22 @@ on:
66
pull_request:
77
branches: [master]
88

9+
# This workflow contains a single job called "npm_test"
910
jobs:
10-
node_matrix_tests:
11+
npm_test:
12+
# The type of runner that the job will run on
1113
runs-on: ubuntu-latest
12-
strategy:
13-
matrix:
14-
node-version: [20, 22, 24]
14+
15+
# Steps represent a sequence of tasks that will be executed as part of the job
1516
steps:
17+
# Checks-out your repository under $GITHUB_WORKSPACE
1618
- uses: actions/checkout@v3
1719
- uses: actions/setup-node@v3
1820
with:
19-
node-version: '^20.x'
21+
node-version: '20.x'
2022

21-
- name: Install Monorepo Deps
23+
- name: Install Dependencies 📌
2224
run: npm ci
2325

24-
- name: Run Test Cases
26+
- name: Run Test Cases 🔧
2527
run: npm run test
26-
27-
- name: Run Lint Checks
28-
run: npm run lint

0 commit comments

Comments
 (0)