Skip to content

Bump prettier from 3.3.3 to 3.4.2 #68

Bump prettier from 3.3.3 to 3.4.2

Bump prettier from 3.3.3 to 3.4.2 #68

Workflow file for this run

name: Build Extension
on:
workflow_dispatch:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build the extension
run: yarn compile
- name: Run test on Linux
run: xvfb-run -a yarn test
if: runner.os == 'Linux'
- name: Run test on other OS
run: yarn test
if: runner.os != 'Linux'