Skip to content

Commit 88e9ac9

Browse files
Merge pull request #16 from Frontify/build/update-build-packages
build: update developer dependencies
2 parents cf1d5d6 + 94fa99b commit 88e9ac9

File tree

12 files changed

+2741
-1020
lines changed

12 files changed

+2741
-1020
lines changed

.github/workflows/continuous-deployment.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,7 @@ jobs:
1717
with:
1818
node-version-file: '.nvmrc'
1919

20-
- name: Cache dependencies
21-
id: npm_cache
22-
uses: actions/cache@v3
23-
with:
24-
path: '**/node_modules'
25-
key: node16-${{ hashFiles('package-lock.json') }}
26-
2720
- name: Install dependencies
28-
if: steps.npm_cache.outputs.cache-hit != 'true'
2921
run: npm ci
3022

3123
- name: Lint and fix code
@@ -53,15 +45,7 @@ jobs:
5345
node-version-file: '.nvmrc'
5446
registry-url: 'https://registry.npmjs.org'
5547

56-
- name: Cache dependencies
57-
id: npm_cache
58-
uses: actions/cache@v3
59-
with:
60-
path: '**/node_modules'
61-
key: node16-${{ hashFiles('package-lock.json') }}
62-
6348
- name: Install dependencies
64-
if: steps.npm_cache.outputs.cache-hit != 'true'
6549
run: npm ci
6650

6751
- name: Build Frontify Finder

.github/workflows/continuous-integration.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,7 @@ jobs:
2424
with:
2525
node-version-file: '.nvmrc'
2626

27-
- name: Cache NPM dependencies
28-
id: npm_cache
29-
uses: actions/cache@v3
30-
with:
31-
path: '**/node_modules'
32-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
33-
3427
- name: Install NPM dependencies
35-
if: steps.npm_cache.outputs.cache-hit != 'true'
3628
run: npm ci
3729

3830
- name: Typecheck files

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
/dist
33
.idea/
4+
.DS_Store

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22

0 commit comments

Comments
 (0)