7
7
pull_request :
8
8
9
9
env :
10
- NODE_VERSION : 14
10
+ NODE_VERSION : 16
11
11
PERCY_PARALLEL_NONCE : ${{ github.run_id }}-${{ github.run_number }}
12
12
PERCY_PARALLEL_TOTAL : 1
13
13
14
14
jobs :
15
15
lint :
16
- name : Lint files and dependencies
16
+ name : Lint files
17
17
runs-on : ubuntu-latest
18
18
timeout-minutes : 3
19
19
steps :
20
20
- name : Check out a copy of the repo
21
- uses : actions/checkout@v2
21
+ uses : actions/checkout@v3
22
22
23
23
- name : Use Node.js ${{ env.NODE_VERSION }}
24
- uses : actions/setup-node@v2
24
+ uses : actions/setup-node@v3
25
25
with :
26
26
cache : ' yarn'
27
27
node-version : ${{ env.NODE_VERSION }}
@@ -39,10 +39,10 @@ jobs:
39
39
timeout-minutes : 5
40
40
steps :
41
41
- name : Check out a copy of the repo
42
- uses : actions/checkout@v2
42
+ uses : actions/checkout@v3
43
43
44
44
- name : Use Node.js ${{ env.NODE_VERSION }}
45
- uses : actions/setup-node@v2
45
+ uses : actions/setup-node@v3
46
46
with :
47
47
cache : ' yarn'
48
48
node-version : ${{ env.NODE_VERSION }}
@@ -67,11 +67,11 @@ jobs:
67
67
if : github.event_name == 'push' && github.ref == 'refs/heads/main'
68
68
steps :
69
69
- name : Check out a copy of the repo
70
- uses : actions/checkout@v2
70
+ uses : actions/checkout@v3
71
71
72
- - name : Set up Git user
72
+ - name : Set a Git user
73
73
run : |
74
- # Set up a Git user for committing
74
+ # Set a Git user for committing
75
75
git config --global user.name "GitHub Actions"
76
76
git config --global user.email "actions@users.noreply.github.com"
77
77
80
80
"$(git config --local --get http.https://github.com/.extraheader)"
81
81
82
82
- name : Use Node.js ${{ env.NODE_VERSION }}
83
- uses : actions/setup-node@v2
83
+ uses : actions/setup-node@v3
84
84
with :
85
85
cache : ' yarn'
86
86
node-version : ${{ env.NODE_VERSION }}
89
89
run : yarn install --frozen-lockfile
90
90
91
91
- name : Deploy
92
- run : yarn deploy
92
+ run : yarn deploy --activate --verbose
0 commit comments