Skip to content

Commit

Permalink
Merge branch 'canary' into update/@vercel/nft
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] committed Apr 11, 2022
2 parents a6a5fa5 + 807abde commit 6b0a2ca
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_test_deploy.yml
Expand Up @@ -1213,11 +1213,11 @@ jobs:
uses: actions/cache@v2
with:
path: .turbo
key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ needs.build.outputs.weekNum }}-${{ github.sha }}
key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ matrix.settings.target }}-${{ needs.build.outputs.weekNum }}-${{ github.sha }}
restore-keys: |
turbo-${{ github.job }}-
turbo-${{ github.job }}-${{ github.ref_name }}-${{ needs.build.outputs.weekNum }}-
turbo-${{ github.job }}-canary-${{ needs.build.outputs.weekNum }}-
turbo-${{ github.job }}-${{ github.ref_name }}-${{ matrix.settings.target }}
turbo-${{ github.job }}-${{ github.ref_name }}-${{ matrix.settings.target }}-${{ needs.build.outputs.weekNum }}-
turbo-${{ github.job }}-canary-${{ matrix.settings.target }}-${{ needs.build.outputs.weekNum }}-
- name: Setup node
uses: actions/setup-node@v2
Expand Down
7 changes: 7 additions & 0 deletions contributing.md
Expand Up @@ -19,6 +19,13 @@ To develop locally:
1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your
own GitHub account and then
[clone](https://help.github.com/articles/cloning-a-repository/) it to your local device.

If you don't need the whole git history, you can clone with depth 1 to reduce the download size (~1.6GB):

```sh
git clone --depth=1 https://github.com/vercel/next.js
```

2. Create a new branch:
```
git checkout -b MY_BRANCH_NAME
Expand Down

0 comments on commit 6b0a2ca

Please sign in to comment.