Skip to content

Commit

Permalink
ci(release.yml): add a step for installing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Dong Cai committed Mar 5, 2023
1 parent d0201d0 commit a0dd2c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
with:
node-version: 16
- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm install --save-exact
- name: Linting
run: yarn lint
run: npm lint
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm install --save-exact
- name: Publish to Visual Studio Marketplace
uses: HaaLeo/publish-vscode-extension@v1
with:
Expand Down

0 comments on commit a0dd2c3

Please sign in to comment.