refactor: extract components to plugin repo (#1933)

This commit is contained in:
Mo
2022-11-04 11:04:53 -05:00
committed by GitHub
parent 5bba4820e4
commit 77d5093f14
1927 changed files with 1655 additions and 167892 deletions

View File

@@ -1,38 +0,0 @@
name: Components PR
on:
pull_request:
branches:
- main
paths:
- packages/components/**
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
- name: Install dependencies
run: yarn install
- name: Build components
run: yarn build:components
- name: Lint components
run: yarn lint
working-directory: packages/components
- name: Test components
run: yarn test
working-directory: packages/components
- name: Build all
run: yarn build:all
- name: Lint all
run: yarn lint
- name: Test all
run: yarn test

View File

@@ -6,7 +6,6 @@ on:
- main
paths:
- '**/**'
- '!packages/components/**'
jobs:
test: