diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cbb61fc6..3bb7cdf8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,14 +22,6 @@ jobs: key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }} restore-keys: | ${{ runner.os }}-node- - - name: Cache Jest - uses: actions/cache@v2 - with: - path: .cache/jest - key: ${{ runner.os }}-jest-${{ hashFiles('package.json') }}-${{ github.run_number }} - restore-keys: | - ${{ runner.os }}-jest-${{ hashFiles('package.json') }}- - ${{ runner.os }}-jest- - name: Install dependencies run: npm i - name: Build NodeJS package diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 3cfc387a..5243067a 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -79,14 +79,6 @@ jobs: key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }} restore-keys: | ${{ runner.os }}-node- - - name: Cache Jest - uses: actions/cache@v2 - with: - path: .cache/jest - key: ${{ runner.os }}-jest-${{ hashFiles('package.json') }}-${{ github.run_number }} - restore-keys: | - ${{ runner.os }}-jest-${{ hashFiles('package.json') }}- - ${{ runner.os }}-jest- - name: Install dependencies run: npm i - name: Run tests diff --git a/.gitignore b/.gitignore index 90b510e0..a56de62d 100644 --- a/.gitignore +++ b/.gitignore @@ -6,10 +6,6 @@ icons/* # Except SVG files !icons/*.svg -# Caches -.cache/ - - ### NodeJS ### # Logs logs diff --git a/jest.config.js b/jest.config.js deleted file mode 100644 index 239cf058..00000000 --- a/jest.config.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - cacheDirectory: './.cache/jest', -};