https://git.jolheiser.com/tailwind-ctp-intellisense.git
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index 46673a0412c9e3a941f18f9ce66bbe491699be45..4b81c4bf7a79cfaba1ff43820a80695db4c11355 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -11,14 +11,14 @@ - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: 18 - registry-url: "https://registry.npmjs.org" + registry-url: 'https://registry.npmjs.org' - name: Cache node_modules uses: actions/cache@v3 with: path: node_modules key: ${{ runner.os }}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('**/package-lock.json') }} - name: Install dependencies - run: npm install && npm run bootstrap + run: npm install - name: Run tests run: > cd packages/tailwindcss-language-server &&
1 2 3 4 5 6 7 8 9 10 11 12 13
diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index c223c90437b3ffa0d3b7f87dab5e2823039b7ee8..ca9d3e6827fe8bfa0fd6ad19d12c175adc670de1 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -18,7 +18,7 @@ with: path: node_modules key: ${{ runner.os }}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('**/package-lock.json') }} - name: Install dependencies - run: npm install && npm run bootstrap + run: npm install - name: Run tests run: > cd packages/tailwindcss-language-server &&