Skip to content

Commit d6f4ea3

Browse files
committed
Fix workflows
1 parent 5742c36 commit d6f4ea3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/manual-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
- uses: actions/setup-node@v3
1212
with:
1313
node-version: 18
14-
registry-url: "https://registry.npmjs.org"
14+
registry-url: 'https://registry.npmjs.org'
1515
- name: Cache node_modules
1616
uses: actions/cache@v3
1717
with:
1818
path: node_modules
1919
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('**/package-lock.json') }}
2020
- name: Install dependencies
21-
run: npm install && npm run bootstrap
21+
run: npm install
2222
- name: Run tests
2323
run: >
2424
cd packages/tailwindcss-language-server &&

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
path: node_modules
1919
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('**/package-lock.json') }}
2020
- name: Install dependencies
21-
run: npm install && npm run bootstrap
21+
run: npm install
2222
- name: Run tests
2323
run: >
2424
cd packages/tailwindcss-language-server &&

0 commit comments

Comments
 (0)