From 72729f7d57077fcd9f3a01ba0665e8ef923549ef Mon Sep 17 00:00:00 2001 From: Boaz Poolman Date: Fri, 31 Dec 2021 13:05:43 +0100 Subject: [PATCH] fix: Integration pipeline --- .github/workflows/tests.yml | 2 -- playground/config/plugins.js | 5 ++++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 63d8d1f..3acb8a8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,8 +41,6 @@ jobs: run: yarn --frozen-lockfile --unsafe-perm - name: Install dependencies playground run: yarn playground:install --frozen-lockfile --unsafe-perm - - name: Build playground - run: yarn playground:build - name: Run test run: yarn run -s test:integration # unit: diff --git a/playground/config/plugins.js b/playground/config/plugins.js index c3373f9..dd95994 100644 --- a/playground/config/plugins.js +++ b/playground/config/plugins.js @@ -1,7 +1,10 @@ module.exports = ({ env }) => ({ 'config-sync': { config: { - customTypes: [], + excludedConfig: [ + 'core-store.plugin_users-permissions_grant', + 'user-role.public', + ], }, }, });