Skip to content

⬆️ Bump chromedriver from 105.0.1 to 128.0.1 #211

⬆️ Bump chromedriver from 105.0.1 to 128.0.1

⬆️ Bump chromedriver from 105.0.1 to 128.0.1 #211

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
pull_request:
branches: [ "main" ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Run Percy Test
run: npm run test
env:
WEB_PERCY_TOKEN: ${{ secrets.WEB_PERCY_TOKEN }}
APP_PERCY_TOKEN: ${{ secrets.APP_PERCY_TOKEN }}