Skip to content

Commit

Permalink
⬆️ node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
a-tokyo authored Aug 28, 2023
1 parent e7a4e17 commit a191625
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ubuntu-latest-node-12.x-yarn-${{ hashFiles('**/yarn.lock') }}
key: ubuntu-latest-node-16.x-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
ubuntu-latest-node-12.x-yarn-
- uses: actions/setup-node@v1
ubuntu-latest-node-16.x-yarn-
- uses: actions/setup-node@v3
with:
node-version: 12.x
node-version: 16.x
registry-url: https://registry.npmjs.org/
- name: Install
run: yarn install
Expand Down

1 comment on commit a191625

@vercel
Copy link

@vercel vercel bot commented on a191625 Aug 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.