Fix workflows
parent
5742c36c2a
commit
d6f4ea3951
|
@ -11,14 +11,14 @@ jobs:
|
|||
- 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 &&
|
||||
|
|
|
@ -18,7 +18,7 @@ jobs:
|
|||
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 &&
|
||||
|
|
Loading…
Reference in New Issue