Update dependency webdriverio to ^7.33.0 #2192
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: node:16-buster | |
options: --network-alias testHost | |
timeout-minutes: 10 | |
env: | |
NODE_ENV: test | |
SELENIUM_HUB_HOST: hub | |
TEST_HOST: testHost | |
services: | |
hub: | |
image: selenium/hub:3.141.59-gold | |
chrome: | |
image: selenium/node-chrome:3.141.59-gold | |
env: | |
HUB_HOST: hub | |
HUB_PORT: 4444 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install | |
run: yarn | |
- name: Lint | |
run: yarn lint | |
- name: Test bff | |
run: cd packages/bff; yarn test.ci | |
# TODO: | |
# - name: Test bff-webdriver | |
# run: npm run test.webdriver | |
playwright: | |
runs-on: ubuntu-latest | |
container: | |
image: ianwalter/playwright:v3.0.0 | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install | |
run: yarn | |
- name: Test bff | |
run: yarn test.playwright |