We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4abfcfa commit 4a353d2Copy full SHA for 4a353d2
.github/workflows/deploy.yml
@@ -22,14 +22,14 @@ jobs:
22
uses: actions/setup-node@v2
23
with:
24
node-version: ${{ matrix.node-version }}
25
- cache: "npm"
+ cache: "yarn"
26
27
- name: Install Packages
28
- run: npm ci
+ run: yarn install --frozen-lockfile
29
30
- name: Build 🔧
31
- run: npm run build
32
- - run: npm run export
+ run: yarn build
+ - run: yarn run export
33
- run: touch ./out/.nojekyll
34
35
- name: Deploy
0 commit comments