Skip to content

Bump semver from 6.3.0 to 6.3.1 #2123

Bump semver from 6.3.0 to 6.3.1

Bump semver from 6.3.0 to 6.3.1 #2123

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- run: yarn install
- run: yarn run playwright install --with-deps
- run: yarn build
- name: Set Chrome Version
run: |
CHROMEVER="$(chromedriver --version | cut -d' ' -f2)"
echo "Actions ChromeDriver is $CHROMEVER"
echo "CHROMEVER=${CHROMEVER}" >> $GITHUB_ENV
- name: Lint
run: yarn lint
- name: Unit Test
run: yarn test:unit
- name: Chrome Test
run: yarn test:browser --project=chrome
- name: Firefox Test
run: yarn test:browser --project=firefox