We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74ce6e9 commit 73bceacCopy full SHA for 73bceac
2 files changed
.github/workflows/deploy.yaml
@@ -19,6 +19,12 @@ jobs:
19
node-version: '18'
20
cache: 'yarn'
21
registry-url: 'https://registry.npmjs.org'
22
+ - name: Cache dependencies
23
+ uses: actions/cache@v4
24
+ with:
25
+ path: |
26
+ ~/.cache
27
+ key: dependencies-v1-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
28
- name: Publish
29
run: |
30
yarn install --frozen-lockfile --ignore-scripts --prefer-offline
.github/workflows/test.yaml
with:
- name: Install
run: yarn install --frozen-lockfile --ignore-scripts --prefer-offline
- name: Test TypeScript
0 commit comments