Skip to content

Added support for importing relative plugins implicitly, without star… #180

Added support for importing relative plugins implicitly, without star…

Added support for importing relative plugins implicitly, without star… #180

Workflow file for this run

name: Build & Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
runs-on: ${{ matrix.os }}
name: Build & Test (${{ matrix.os }})
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run compile
- name: Test
run: npm run test