* fix: add grab cursor to drag indicator * feat: optional secret field * chore: increment version * chore: format files * fix: import React automatically * fix: qr code button not clickable * fix: show entry types after title * fix: remove stylekit references * fix: import react * chore: update yarn.lock * fix: update webpack dev config * fix: styles import path * fix: skalert import * fix: misc * fix: build components using build:components script * fix(tmp): @standardnotes/styles as a dependency for @standardnotes/components-meta Co-authored-by: Johnny Almonte <johnny243@users.noreply.github.com>
40 lines
776 B
YAML
40 lines
776 B
YAML
name: Components PR
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- develop
|
|
- main
|
|
paths:
|
|
- packages/components/**
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
- name: Install dependencies
|
|
run: yarn install
|
|
|
|
- name: Lint components
|
|
run: yarn lint
|
|
working-directory: packages/components
|
|
|
|
- name: Build components
|
|
run: yarn build:components
|
|
|
|
- name: Test components
|
|
run: yarn test
|
|
working-directory: packages/components
|
|
|
|
- name: Lint all
|
|
run: yarn lint
|
|
- name: Build all
|
|
run: yarn build:all
|
|
- name: Test all
|
|
run: yarn test
|