Fix workflows
parent
5742c36c2a
commit
d6f4ea3951
|
@ -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 &&
|
||||||
|
|
|
@ -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 &&
|
||||||
|
|
Loading…
Reference in New Issue