Skip to content

Commit

Permalink
tweak test action to use yarn install instead of yarn ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Jul 21, 2024
1 parent 2a606e3 commit 6a55ca3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn ci
- run: yarn install
- run: yarn test
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
},
"scripts": {
"u": "yarn npm-check-updates --upgrade --install always",
"ci": "yarn install --frozen-lockfile",
"clean": "rimraf lib dist coverage .nyc_output",
"precompile": "yarn clean",
"compile": "tsc",
Expand All @@ -20,13 +19,13 @@
"prelint": "yarn compile",
"lint": "yarn eslint src --ext .ts",
"prettier": "prettier --write src/*.ts src/**/*.ts",
"pretest": "yarn run-p lint compile",
"pretest": "yarn compile",
"test": "mocha 'dist/*.spec.js'",
"docs:1": "typedoc --options .typedoc.js",
"docs:3": "cp .serve.json docs/serve.json",
"docs:4": "touch docs/.nojekyll",
"docs:5": "yarn serve docs",
"docs": "yarn run-s docs:*"
"docs": "run-s docs:*"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 6a55ca3

Please sign in to comment.