Skip to content

Bump prettier from 3.4.1 to 3.4.2 (#482) #444

Bump prettier from 3.4.1 to 3.4.2 (#482)

Bump prettier from 3.4.1 to 3.4.2 (#482) #444

Workflow file for this run

on:
push:
branches:
- main
paths:
- "**.json"
- "**.js"
- "**.ts"
- .github/workflows/vscode.yml
pull_request:
paths:
- "**.json"
- "**.js"
- "**.ts"
- .github/workflows/vscode.yml
name: vscode
jobs:
build:
name: vscode build
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install latest rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- run: yarn install
- run: xvfb-run -a yarn test
if: runner.os == 'Linux'
- run: yarn test
if: runner.os != 'Linux'