Skip to content

chore: bump chromedriver (#897) #232

chore: bump chromedriver (#897)

chore: bump chromedriver (#897) #232

Workflow file for this run

name: Continuous Integration Main
on:
push:
branches:
- main
permissions: read-all
jobs:
unit-tests:
runs-on: ubuntu-latest
permissions: read-all
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Setup
uses: ./.github/actions/setup
- name: Size check
run: npm run size-limit
- run: npm run version:check
- name: Lint code
run: npm run lint
- name: Transpile code
run: npm run compile
- name: Unit test
run: npm run test:unit:ci
local-integration-tests:
runs-on: ubuntu-latest
permissions: read-all
strategy:
fail-fast: true
matrix:
browser: [headlessChrome, headlessFirefox]
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Setup
uses: ./.github/actions/setup
- name: Local integration tests using ${{ matrix.browser }}
run: npm run test:integration:local:${{ matrix.browser }}:_execute