Skip to content

Commit 2c93202

Browse files
committed
ci: disable linting, remove test:ci script until we bring back linting
1 parent d16bd93 commit 2c93202

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
node-version: "${{ matrix.node-version }}"
2727
cache: npm
2828
- run: npm ci
29-
- run: "npm run test:ci"
29+
- run: npm test
3030
test:
3131
runs-on: ubuntu-latest
3232
needs: test_matrix
@@ -39,5 +39,6 @@ jobs:
3939
- run: npm ci
4040
- name: Ensure dependencies are compatible with the version of node
4141
run: npx ls-engines
42-
- run: npm run lint
42+
# enable once we replace `xo` with `prettier`
43+
# - run: npm run lint
4344
- run: npx lockfile-lint --path package-lock.json

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,7 @@
103103
"codecov": "codecov -f coverage/coverage-final.json",
104104
"lint": "xo",
105105
"semantic-release": "semantic-release",
106-
"test": "c8 ava -v",
107-
"test:ci": "c8 ava -v"
106+
"test": "c8 ava -v"
108107
},
109108
"xo": {
110109
"prettier": true,

0 commit comments

Comments
 (0)