We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3eb7b5 commit 02bf3e5Copy full SHA for 02bf3e5
1 file changed
.github/workflows/main.yaml
@@ -6,23 +6,22 @@ on:
6
pull_request:
7
branches: [master]
8
9
+# This workflow contains a single job called "npm_test"
10
jobs:
- node_matrix_tests:
11
+ npm_test:
12
+ # The type of runner that the job will run on
13
runs-on: ubuntu-latest
- strategy:
- matrix:
14
- node-version: [20, 22, 24]
+
15
+ # Steps represent a sequence of tasks that will be executed as part of the job
16
steps:
17
+ # Checks-out your repository under $GITHUB_WORKSPACE
18
- uses: actions/checkout@v3
19
- uses: actions/setup-node@v3
20
with:
- node-version: '^20.x'
21
+ node-version: '20.x'
22
- - name: Install Monorepo Deps
23
+ - name: Install Dependencies 📌
24
run: npm ci
25
- - name: Run Test Cases
26
+ - name: Run Test Cases 🔧
27
run: npm run test
-
- - name: Run Lint Checks
28
- run: npm run lint
0 commit comments