File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed
Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ permissions:
1313 contents : read
1414
1515jobs :
16- build :
16+ webdriverio_tests_tip_of_tree_v12 :
17+ name : WebdriverIO tests (against tip-of-tree core v12)
1718 timeout-minutes : 10
1819 runs-on : ${{ matrix.os }}
1920
6364 run : |
6465 cd main
6566 npm run test
67+
68+ webdriverio_tests :
69+ name : WebdriverIO tests (against pinned v12)
70+ # Don't run pinned version checks for PRs.
71+ if : ${{ !github.base_ref }}
72+ timeout-minutes : 10
73+ runs-on : ${{ matrix.os }}
74+
75+ strategy :
76+ fail-fast : false
77+ matrix :
78+ os : [ubuntu-latest, macos-latest]
79+
80+ steps :
81+ - name : Checkout experimentation plugin
82+ uses : actions/checkout@v4
83+
84+ - name : Use Node.js 20.x
85+ uses : actions/setup-node@v4
86+ with :
87+ node-version : 20.x
88+
89+ - name : NPM install
90+ run : npm install
91+
92+ - name : Run tests
93+ run : npm run test
You can’t perform that action at this time.
0 commit comments