Skip to content

ci: update commitlint #42

ci: update commitlint

ci: update commitlint #42

Workflow file for this run

name: run ext unit tests
on:
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Install webview dependencies
run: yarn install --frozen-lockfile
working-directory: ./src/webview
- run: xvfb-run -a yarn run test
if: runner.os == 'Linux'
- run: yarn run test
if: runner.os != 'Linux'