excellentexport 3.9.11 → 3.9.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.editorconfig ADDED
@@ -0,0 +1,9 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_style = space
5
+ indent_size = 4
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
@@ -0,0 +1,50 @@
1
+ name: Node CI
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+
9
+ jobs:
10
+ build:
11
+
12
+ runs-on: ubuntu-latest
13
+
14
+ strategy:
15
+ matrix:
16
+ node-version: [24.x]
17
+
18
+ steps:
19
+ - uses: actions/checkout@v6
20
+ with:
21
+ fetch-depth: 0
22
+
23
+ - name: Use Node.js ${{ matrix.node-version }}
24
+ uses: actions/setup-node@v6
25
+ with:
26
+ node-version: ${{ matrix.node-version }}
27
+ cache: 'npm'
28
+
29
+ - run: npm install
30
+
31
+ - name: Cache Playwright browsers
32
+ uses: actions/cache@v5
33
+ with:
34
+ path: ~/.cache/ms-playwright
35
+ key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}
36
+ restore-keys: |
37
+ ${{ runner.os }}-playwright-
38
+
39
+ - name: Install Playwright browsers
40
+ run: npx playwright install --with-deps chromium
41
+
42
+ - name: npm test - Vitest
43
+ run: npm test
44
+
45
+ - name: Upload coverage reports to Codecov
46
+ uses: codecov/codecov-action@v7
47
+ with:
48
+ token: ${{ secrets.CODECOV_TOKEN }}
49
+ files: ./coverage/lcov.info
50
+