Skip to content
Snippets Groups Projects
Commit 7ccf9f5b authored by rschamp's avatar rschamp
Browse files

FIx cache ordering

parent 0f589004
No related branches found
No related tags found
No related merge requests found
...@@ -57,8 +57,8 @@ jobs: ...@@ -57,8 +57,8 @@ jobs:
<<: *defaults <<: *defaults
steps: steps:
- *restore_git_cache - *restore_git_cache
- *restore_npm_cache
- checkout - checkout
- *restore_npm_cache
- run: - run:
name: Lint name: Lint
command: npm run test:lint -- --quiet --output-file test-results/eslint/results.xml --format junit command: npm run test:lint -- --quiet --output-file test-results/eslint/results.xml --format junit
...@@ -70,8 +70,8 @@ jobs: ...@@ -70,8 +70,8 @@ jobs:
JEST_JUNIT_OUTPUT_NAME: results.xml JEST_JUNIT_OUTPUT_NAME: results.xml
steps: steps:
- *restore_git_cache - *restore_git_cache
- *restore_npm_cache
- checkout - checkout
- *restore_npm_cache
- run: - run:
name: Unit name: Unit
environment: environment:
...@@ -88,8 +88,8 @@ jobs: ...@@ -88,8 +88,8 @@ jobs:
NODE_OPTIONS: --max-old-space-size=4000 NODE_OPTIONS: --max-old-space-size=4000
steps: steps:
- *restore_git_cache - *restore_git_cache
- *restore_npm_cache
- checkout - checkout
- *restore_npm_cache
- run: - run:
name: Build name: Build
command: npm run build command: npm run build
...@@ -113,8 +113,8 @@ jobs: ...@@ -113,8 +113,8 @@ jobs:
JEST_JUNIT_OUTPUT_NAME: results.txt JEST_JUNIT_OUTPUT_NAME: results.txt
steps: steps:
- *restore_git_cache - *restore_git_cache
- *restore_npm_cache
- checkout - checkout
- *restore_npm_cache
- run: - run:
name: Integration name: Integration
environment: environment:
...@@ -151,8 +151,8 @@ jobs: ...@@ -151,8 +151,8 @@ jobs:
<<: *defaults <<: *defaults
steps: steps:
- *restore_git_cache - *restore_git_cache
- *restore_npm_cache
- checkout - checkout
- *restore_npm_cache
- run: | - run: |
git config --global user.email $(git log --pretty=format:"%ae" -n1) git config --global user.email $(git log --pretty=format:"%ae" -n1)
git config --global user.name $(git log --pretty=format:"%an" -n1) git config --global user.name $(git log --pretty=format:"%an" -n1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment