Skip to content

Allow disabling plugin by setting importOrder to [] #464

Allow disabling plugin by setting importOrder to []

Allow disabling plugin by setting importOrder to [] #464

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
jobs:
build:
strategy:
matrix:
node: [16.x, 18.x, 20.x]
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- run: yarn install --frozen-lockfile --non-interactive
- name: Build
run: yarn compile
- name: Test
run: yarn test
- name: Check formatting
run: yarn format:check