ci: don't cache deps for publish

This commit is contained in:
iCrawl 2022-01-08 22:53:10 +01:00
parent 3f36746561
commit 1d532d9468
No known key found for this signature in database
GPG key ID: 1AB888B16355FBB2
2 changed files with 6 additions and 2 deletions

View file

@ -16,8 +16,6 @@ jobs:
with:
node-version: 16
registry-url: https://registry.npmjs.org/
cache: 'yarn'
cache-dependency-path: yarn.lock
- name: Check previous released version
id: pre-release

View file

@ -29,3 +29,9 @@ jobs:
- name: Run eslint
run: yarn lint --cache-dir=".turbo"
- name: Run tests
run: yarn test --cache-dir=".turbo"
- name: Run build
run: yarn build --cache-dir=".turbo"