File tree Expand file tree Collapse file tree 2 files changed +9
-15
lines changed Expand file tree Collapse file tree 2 files changed +9
-15
lines changed Original file line number Diff line number Diff line change @@ -19,16 +19,14 @@ jobs:
19
19
runs-on : ${{ matrix.os }}
20
20
steps :
21
21
- name : Checkout
22
- uses : actions/checkout@v2
22
+ uses : actions/checkout@v4
23
23
- name : Setup Node.js
24
- uses : actions/setup-node@v1
25
- with :
26
- node-version : 18.13.0
24
+ uses : actions/setup-node@v4
27
25
- name : Install dependencies
28
26
run : npm install
29
27
- name : Build package
30
28
run : npm run build
31
29
- name : Run headless test
32
- uses : GabrielBB/xvfb-action @v1.0
30
+ uses : coactions/setup-xvfb @v1
33
31
with :
34
32
run : npm test
Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
cd :
11
- if : >
12
- ${{ github.event.workflow_run.conclusion == 'success' &&
13
- github.event.workflow_run.head_branch == 'master' }}
11
+ if : ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'master' }}
14
12
runs-on : ubuntu-latest
15
13
permissions :
16
14
contents : write
@@ -20,18 +18,16 @@ jobs:
20
18
21
19
- name : Setup node.js
22
20
uses : actions/setup-node@v4
23
- with :
24
- node-version : 20
25
21
26
22
- name : " Bump version"
27
- uses : ' phips28/gh-action-bump-version@master'
23
+ uses : " phips28/gh-action-bump-version@master"
28
24
env :
29
25
GITHUB_TOKEN : ${{ secrets.REPO_TOKEN }}
30
26
with :
31
- minor-wording : ' MINOR'
32
- major-wording : ' MAJOR'
33
- patch-wording : ' PATCH,FIX'
34
- rc-wording : ' RELEASE'
27
+ minor-wording : " MINOR"
28
+ major-wording : " MAJOR"
29
+ patch-wording : " PATCH,FIX"
30
+ rc-wording : " RELEASE"
35
31
36
32
- name : Install packages
37
33
run : npm ci
You can’t perform that action at this time.
0 commit comments