File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change 6
6
pull_request :
7
7
branches : [master]
8
8
9
+ # This workflow contains a single job called "npm_test"
9
10
jobs :
10
- node_matrix_tests :
11
+ npm_test :
12
+ # The type of runner that the job will run on
11
13
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
15
16
steps :
17
+ # Checks-out your repository under $GITHUB_WORKSPACE
16
18
- uses : actions/checkout@v3
17
19
- uses : actions/setup-node@v3
18
20
with :
19
- node-version : ' ^ 20.x'
21
+ node-version : ' 20.x'
20
22
21
- - name : Install Monorepo Deps
23
+ - name : Install Dependencies 📌
22
24
run : npm ci
23
25
24
- - name : Run Test Cases
26
+ - name : Run Test Cases 🔧
25
27
run : npm run test
26
-
27
- - name : Run Lint Checks
28
- run : npm run lint
You can’t perform that action at this time.
0 commit comments