Skip to content

Commit

Permalink
Update ci-workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Florek authored Jun 18, 2020
1 parent 44e3881 commit 67a682c
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,23 @@ jobs:
uses: actions/[email protected]
with:
node-version: 12.6.0

- name: Cache Node Modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
# - name: Install Dependencies
# shell: bash
# run: npm ci
- name: Install Dependencies
shell: bash
run: npm ci

- name: Install Codegen
shell: bash
Expand Down

0 comments on commit 67a682c

Please sign in to comment.