Bump chromedriver from 112.0.0 to 119.0.1 #1025
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: Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
permissions: | |
actions: read | |
contents: read | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: 📦 Install Dependencies | |
run: yarn | |
env: | |
DETECT_CHROMEDRIVER_VERSION: true | |
- name: 🏗 Build Project | |
run: yarn build:dev | |
- name: 🧪 Run Tests | |
uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: yarn test | |
options: "-screen 0 1600x1200x24" | |
# - name: 🐛 Debug Build | |
# uses: stateful/vscode-server-action@v1 | |
# if: failure() | |
# with: | |
# timeout: '30000' | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: screenshots | |
path: | | |
test/screenshots | |
test/logs |