Fix workflows

master
Jordan Pittman 2023-10-20 14:20:46 -04:00
parent 5742c36c2a
commit d6f4ea3951
2 changed files with 3 additions and 3 deletions

View File

@ -11,14 +11,14 @@ jobs:
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: 18 node-version: 18
registry-url: "https://registry.npmjs.org" registry-url: 'https://registry.npmjs.org'
- name: Cache node_modules - name: Cache node_modules
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: node_modules path: node_modules
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('**/package-lock.json') }} key: ${{ runner.os }}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies - name: Install dependencies
run: npm install && npm run bootstrap run: npm install
- name: Run tests - name: Run tests
run: > run: >
cd packages/tailwindcss-language-server && cd packages/tailwindcss-language-server &&

View File

@ -18,7 +18,7 @@ jobs:
path: node_modules path: node_modules
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('**/package-lock.json') }} key: ${{ runner.os }}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies - name: Install dependencies
run: npm install && npm run bootstrap run: npm install
- name: Run tests - name: Run tests
run: > run: >
cd packages/tailwindcss-language-server && cd packages/tailwindcss-language-server &&