diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 9c07794..3a2b3c0 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -11,16 +11,19 @@ jobs: runs-on: ubuntu-latest env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BIT_CONFIG_USER_TOKEN: ${{ secrets.BIT_CONFIG_USER_TOKEN }} + BIT_CONFIG_USER_TOKEN: ${{ secrets.BIT_CONFIG_USER_TOKEN}} NODE_OPTIONS: --max_old_space_size=4096 steps: - name: Set up Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 + - name: Checkout repository uses: actions/checkout@v3 + - name: Initialize Bit uses: bit-tasks/init@v1 + - name: Bit Pull Request uses: bit-tasks/pull-request@main diff --git a/design/themes/base-theme/design-tokens.json b/design/themes/base-theme/design-tokens.json index cd399fc..545cf7b 100644 --- a/design/themes/base-theme/design-tokens.json +++ b/design/themes/base-theme/design-tokens.json @@ -197,6 +197,10 @@ "processSurfaceColor": { "value": "#f0f8fd", "type": "color" + }, + "test": { + "value": "#fff", + "type": "color" } }, "Dark": { diff --git a/workspace.jsonc b/workspace.jsonc index ba08fae..4bda39f 100644 --- a/workspace.jsonc +++ b/workspace.jsonc @@ -1,7 +1,7 @@ /** * this is the main configuration file of your bit workspace. * for full documentation, please see: https://bit.dev/reference/workspace/workspace-json - **/{ + **/ { "$schema": "https://static.bit.dev/teambit/schemas/schema.json", /** * main configuration of the Bit workspace. @@ -27,7 +27,7 @@ /** * default scope for all components in workspace. **/ - "defaultScope": "my-scope", + "defaultScope": "teambit.design", "resolveAspectsFromNodeModules": true, "resolveEnvsFromRoots": true }, @@ -49,4 +49,4 @@ "teambit.workspace/workspace-config-files": { "enableWorkspaceConfigWrite": true } -} \ No newline at end of file +}