Skip to content

Commit

Permalink
chore: use v14 LTS for more tests and release (#700)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Oct 27, 2020
1 parent 1480f2e commit 87f7162
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Expand Up @@ -25,12 +25,12 @@ jobs:
- uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ubuntu-latest-node-12.x-yarn-${{ hashFiles('**/yarn.lock') }}
key: ubuntu-latest-node-14.x-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
ubuntu-latest-node-12.x-yarn-
ubuntu-latest-node-14.x-yarn-
- uses: actions/setup-node@v2.1.2
with:
node-version: 12.x
node-version: 14.x
- name: install
run: yarn
- name: regenerate docs
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/nodejs.yml
Expand Up @@ -68,14 +68,12 @@ jobs:
- uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key:
${{ runner.os }}-node-${{ matrix.node-version }}-yarn-${{
hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-node-14.x-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-${{ matrix.node-version }}-yarn-
${{ runner.os }}-node-14.x-yarn-
- uses: actions/setup-node@v2.1.2
with:
node-version: 12.x
node-version: 14.x
- name: install
run: yarn
- name: run prettier
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -19,12 +19,12 @@ jobs:
- uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ubuntu-latest-node-12.x-yarn-${{ hashFiles('**/yarn.lock') }}
key: ubuntu-latest-node-14.x-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
ubuntu-latest-node-12.x-yarn-
ubuntu-latest-node-14.x-yarn-
- uses: actions/setup-node@v2.1.2
with:
node-version: 12.x
node-version: 14.x
- name: install
run: yarn
- run: yarn semantic-release
Expand Down

0 comments on commit 87f7162

Please sign in to comment.