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 66 pull_request :
77 branches : [master]
88
9+ # This workflow contains a single job called "npm_test"
910jobs :
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
You can’t perform that action at this time.
0 commit comments