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 c50f571 commit 995778bCopy full SHA for 995778b
.github/workflows/main.yml
@@ -21,24 +21,14 @@ jobs:
21
contents: write
22
23
steps:
24
- # Setup file access & Cache
25
- - uses: actions/checkout@v2
26
- - uses: actions/cache@v2
27
- with:
28
- path: |
29
- .yarn/cache
30
- key: |
31
- yarn2-${{ hashFiles('yarn.lock') }}
32
- restore-keys: |
33
34
-
35
# Building with yarn
36
- - uses: borales/actions-yarn@v2.3.0
37
38
- cmd: install
39
+ - uses: actions/checkout@v3
+ - uses: actions/setup-node@v3
40
with:
41
- cmd: build
+ node-version: '14'
+ cache: 'yarn'
+ - run: yarn install --frozen-lockfile --immutable
+ - run: yarn build
42
43
# Pushing to release
44
- name: Release
0 commit comments