-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (25 loc) · 769 Bytes
/
Copy pathmain.yml
File metadata and controls
30 lines (25 loc) · 769 Bytes
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: tests
on:
push:
branches: [main]
paths-ignore:
- '**/docs/**'
- '**/*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-tests:
uses: ./.github/workflows/unit-tests.yml
matrix-tests:
uses: ./.github/workflows/matrix-tests.yml
with:
node-version: 24
jest-version: 30
merge-coverage:
needs:
- matrix-tests
- unit-tests
uses: ./.github/workflows/coverage.yml