Skip to content

Commit

Permalink
Fix remaining yarn references
Browse files Browse the repository at this point in the history
  • Loading branch information
ewanharris committed Dec 20, 2023
1 parent 9d76a74 commit f81fc29
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65
with:
node-version: ${{ env.node }}
cache: 'yarn'
cache: 'npm'

- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm ci

- name: Run tests
run: yarn run test:ci
run: npm run test:ci

- name: Upload coverage report
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,4 @@ lib/
# Other
dist/
out/
coverage/
2 changes: 1 addition & 1 deletion scripts/jsdocs.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if (process.platform === 'win32') {
var execSync = require('child_process').execSync;
var fs = require('fs');

execSync('yarn docs', { stdio: 'inherit' });
execSync('npm run docs', { stdio: 'inherit' });

if (fs.existsSync('docs')) {
execSync('rm -r docs', { stdio: 'inherit' });
Expand Down

0 comments on commit f81fc29

Please sign in to comment.