Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,17 @@ jobs:
cache: 'npm'
cache-dependency-path: 'src/package-lock.json'

- name: Configure npm
run: |
npm config set registry https://registry.npmjs.org/
npm config set fetch-retries 3
npm config set fetch-retry-mintimeout 5000
npm config set fetch-retry-maxtimeout 60000

- name: Install dependencies
run: |
cd src
npm ci
npm install --no-audit --no-fund

- name: Run tests
run: |
Expand Down Expand Up @@ -79,10 +86,17 @@ jobs:
cache: 'npm'
cache-dependency-path: 'src/package-lock.json'

- name: Configure npm
run: |
npm config set registry https://registry.npmjs.org/
npm config set fetch-retries 3
npm config set fetch-retry-mintimeout 5000
npm config set fetch-retry-maxtimeout 60000

- name: Install dependencies
run: |
cd src
npm ci
npm install --no-audit --no-fund

- name: Build function
run: |
Expand Down