Skip to content

Fix: rollup fails to build if you provide no environments #100

Fix: rollup fails to build if you provide no environments

Fix: rollup fails to build if you provide no environments #100

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install npm
run: npm install -g npm@8
- name: Install Dependencies
run: npm ci
- name: Test
uses: GabrielBB/xvfb-action@v1
with:
run: npm test