We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98e6ef3 commit f139116Copy full SHA for f139116
.github/actions/cached-deps/action.yml
@@ -5,16 +5,16 @@ runs:
5
using: 'composite'
6
steps:
7
- name: 'Cache Dependencies'
8
- uses: 'actions/cache@v3'
+ uses: 'actions/cache@v4'
9
id: cache-node-modules
10
with:
11
path: 'node_modules'
12
key: deps-node-modules-${{ hashFiles('**/package-lock.json') }}
13
14
- name: Install Dependencies
15
if: steps.cache-node-modules.outputs.cache-hit != 'true'
16
+ shell: bash
17
run: |
18
npm i
19
npm run clean
- npm i --workspaces
20
- shell: bash
+ npm i --workspaces
.github/workflows/nodejs.yml
@@ -56,6 +56,10 @@ jobs:
56
uses: ./.github/actions/cached-deps
57
58
- name: npm build
59
+ run: |
60
+ npm run build
61
+
62
+ - name: npm build vscode
63
64
npm run vscode:prepublish --workspace=vscode
65
0 commit comments