We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2498526 commit 17c90edCopy full SHA for 17c90ed
2 files changed
.clean-publish
@@ -1,5 +1,6 @@
1
{
2
"withoutPublish": true,
3
"tempDir": "package",
4
- "files": [".eslintrc.json", "**/*.spec.js"]
+ "fields": ["scripts", "publishConfig"],
5
+ "files": ["**/*.spec.js"]
6
}
.github/workflows/tests.yml
@@ -28,4 +28,23 @@ jobs:
28
- name: Install dependencies
29
run: pnpm install
30
- name: Run tests
31
- run: pnpm test
+ run: pnpm test:unit
32
+ lint:
33
+ runs-on: ubuntu-latest
34
+ name: lint
35
+ steps:
36
+ - name: Checkout the repository
37
+ uses: actions/checkout@v4
38
+ - name: Install pnpm
39
+ uses: pnpm/action-setup@v4
40
+ with:
41
+ version: 10
42
+ - name: Install Node.js
43
+ uses: actions/setup-node@v4
44
45
+ node-version: 20
46
+ cache: 'pnpm'
47
+ - name: Install dependencies
48
+ run: pnpm install
49
+ - name: Lint files
50
+ run: pnpm lint
0 commit comments