Skip to content

WXT migration

WXT migration #16

Workflow file for this run

name: Prettier Check
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
prettier:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Prettier check
run: pnpm run format:check