We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c97b13 commit 08db519Copy full SHA for 08db519
2 files changed
.github/run-unit-tests.yaml
@@ -0,0 +1,15 @@
1
+name: Run unit and integration tests
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: actions/setup-node@v4
11
+ with:
12
+ node-versions: '20.x'
13
+ cache: 'npm'
14
+ - run: npm install
15
+ - run: npm run test
package.json
@@ -99,7 +99,7 @@
99
"scripts": {
100
"build": "shx rm -rf dist && tsc -b",
101
"build:release": "npm run pkg && ./scripts/notarize.sh",
102
- "lint": "tsc && eslint . --ext .ts",
+ "lint": "tsc",
103
"postpack": "shx rm -f oclif.manifest.json",
104
"pretarball": "../../../scripts/codesign.sh",
105
"pkg": "tsx ./scripts/pkg.ts",
0 commit comments