Skip to content

Commit 3ac61d4

Browse files
authored
feat(release.yml): update node version --dry-run
1 parent 84ecb44 commit 3ac61d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-node@v1
1515
with:
16-
node-version: 16
16+
node-version: 14
1717
- uses: actions/cache@v2
1818
id: yarn-cache
1919
name: Cache npm deps
@@ -22,7 +22,7 @@ jobs:
2222
node_modules
2323
**/node_modules
2424
~/.cache/Cypress
25-
key: ${{ runner.os }}-yarn-16-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
25+
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
2626
- run: yarn install --frozen-lockfile
2727
if: steps.yarn-cache.outputs.cache-hit != 'true'
2828
- uses: actions/cache@v2
@@ -32,7 +32,7 @@ jobs:
3232
path: |
3333
packages/*/dist
3434
packages/react-styles/css
35-
key: ${{ runner.os }}-dist-16-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock', 'package.json', 'packages/*/*', '!packages/*/dist', '!packages/*/node_modules') }}
35+
key: ${{ runner.os }}-dist-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock', 'package.json', 'packages/*/*', '!packages/*/dist', '!packages/*/node_modules') }}
3636
- name: Build dist
3737
run: yarn build
3838
if: steps.dist.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)