File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 6
6
on :
7
7
# Triggers the workflow on push or pull request events but only for the master branch
8
8
push :
9
- branches : [ master ]
9
+ branches : [ dev ]
10
10
pull_request :
11
- branches : [ master ]
11
+ branches : [ dev ]
12
12
13
13
# Allows you to run this workflow manually from the Actions tab
14
14
workflow_dispatch :
@@ -23,11 +23,11 @@ jobs:
23
23
# Steps represent a sequence of tasks that will be executed as part of the job
24
24
steps :
25
25
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26
- - uses : actions/checkout@v2
26
+ - uses : actions/checkout@v3
27
27
28
28
# Runs a single command using the runners shell
29
- - name : Run a one-line script
30
- run : echo Hello, world!
29
+ - name : Run all tests
30
+ run : npm run test
31
31
32
32
# Runs a set of commands using the runners shell
33
33
- name : Run a multi-line script
You can’t perform that action at this time.
0 commit comments