Skip to content

Commit

Permalink
ci(github): Update to Node 14
Browse files Browse the repository at this point in the history
  • Loading branch information
tommy351 committed May 20, 2021
1 parent f791e1a commit 31803e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Expand Up @@ -5,17 +5,17 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 14
- uses: actions/cache@v1
id: yarn-cache
with:
path: .yarn/cache
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-node-14-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn install --immutable
Expand Down

0 comments on commit 31803e1

Please sign in to comment.