-
Notifications
You must be signed in to change notification settings - Fork 4
46 lines (37 loc) · 1.1 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x] # Test on multiple versions of Node.js
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run Jest tests
run: npm test # This will run Jest using the npm test command
- name: Upload Jest test results (if applicable)
if: always()
uses: actions/upload-artifact@v3
with:
name: jest-test-results
path: test-results # Adjust this if Jest is outputting results to a specific directory
- name: Upload coverage report (optional)
if: always()
uses: actions/upload-artifact@v3
with:
name: coverage
path: coverage # Upload coverage reports if you're using Jest's coverage feature