We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddcc139 commit 3e56e5aCopy full SHA for 3e56e5a
.github/workflows/run-coverage.yml
@@ -9,23 +9,25 @@ jobs:
9
10
runs-on: ubuntu-latest
11
12
- strategy:
13
- matrix:
14
- node-version: [16.x, 18.x]
15
-
16
steps:
17
- name: Checkout repository
18
uses: actions/checkout@v3
19
- with:
20
- fetch-depth: 2
21
22
- name: Use Node.js ${{ matrix.node-version }}
23
uses: actions/setup-node@v3
24
with:
25
- node-version: ${{ matrix.node-version }}
+ node-version: 18.x
+
+ - name: Start Redis ${{ matrix.redis-version }}
+ uses: supercharge/redis-github-action@1.4.0
+ with:
+ redis-version: 6
26
27
- name: Install dependencies
28
run: npm install
29
30
- name: Run the tests
31
run: npm test -- --coverage
32
+ - name: Upload coverage to Codecov
33
+ uses: codecov/codecov-action@v3
0 commit comments