Skip to content

Commit e9a07c4

Browse files
committed
Replace yarn commands with npm
1 parent 47cc6f1 commit e9a07c4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v2
1818
with:
1919
token: ${{ steps.generate_token.outputs.token }}
20-
- run: yarn install
20+
- run: npm install
2121
- run: curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
2222
- run: $HOME/bin/deps ci
2323
env:

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v2
11-
- run: yarn install
12-
- run: yarn run pre-commit
13-
- run: yarn run build
11+
- run: npm install
12+
- run: npm run pre-commit
13+
- run: npm run build

scripts/release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ git commit -m "Version $VERSION"
1414
git tag -a "v$VERSION" -m "v$VERSION"
1515

1616
echo "Building JS"
17-
yarn run build
17+
npm run build
1818

1919
echo "Zipping extension"
2020
rm -f pullapprove-browser-extension.zip

0 commit comments

Comments
 (0)