We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99cc3d2 commit 9158f3dCopy full SHA for 9158f3d
1 file changed
.github/workflows/deploy.yml
@@ -27,13 +27,16 @@ jobs:
27
mix local.rebar --force
28
mix deps.get
29
30
- - name: Install Node.js
+ - name: Set up Node.js
31
uses: actions/setup-node@v3
32
with:
33
node-version: '18'
34
+ cache: 'npm'
35
- - name: Install dependencies
36
- run: npm install
+ - name: Install Node.js dependencies
37
+ run: |
38
+ npm ci --prefer-offline --no-audit
39
+ npm install esbuild@0.17.11
40
41
- name: Build assets
42
run: |
0 commit comments