Skip to content

core(config): throw an error if a filter is an empty array #4310

core(config): throw an error if a filter is an empty array

core(config): throw an error if a filter is an empty array #4310

Workflow file for this run

name: package-test
on:
push:
branches: [main]
pull_request: # run on all PRs, not just PRs to a particular branch
jobs:
package-test:
runs-on: ubuntu-latest
name: Package Test
env:
FORCE_COLOR: true
steps:
- name: git clone
uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- run: yarn install --frozen-lockfile --network-timeout 1000000
- run: yarn build-report
- run: sudo apt-get install xvfb
- run: xvfb-run --auto-servernum bash $GITHUB_WORKSPACE/core/scripts/release/package-test.sh
# Fail if any changes were written to source files.
- run: git diff --exit-code
package-test-legacy:
runs-on: ubuntu-latest
name: Package Test Legacy Navigation
env:
FORCE_COLOR: true
steps:
- name: git clone
uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- run: yarn install --frozen-lockfile --network-timeout 1000000
- run: yarn build-report
- run: sudo apt-get install xvfb
- run: xvfb-run --auto-servernum bash $GITHUB_WORKSPACE/core/scripts/release/package-test.sh --legacy-navigation
# Fail if any changes were written to source files.
- run: git diff --exit-code