File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- uses : actions/checkout@v2
15
- - name : Install Vercel CLI
16
- run : npm install --global vercel@latest
15
+ - uses : actions/setup-node@v3
16
+ with :
17
+ node-version : 18
18
+ cache : ' yarn'
19
+ - name : Install modules
20
+ run : yarn
17
21
- name : Pull Vercel Environment Information
18
22
run : vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
19
23
- name : Build Project Artifacts
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- uses : actions/checkout@v2
14
- - name : Install Vercel CLI
15
- run : npm install --global vercel@latest
14
+ - uses : actions/setup-node@v3
15
+ with :
16
+ node-version : 18
17
+ cache : ' yarn'
18
+ - name : Install modules
19
+ run : yarn
16
20
- name : Pull Vercel Environment Information
17
21
run : vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
18
22
- name : Build Project Artifacts
You can’t perform that action at this time.
0 commit comments