mirror of
https://github.com/standardnotes/app.git
synced 2026-01-16 23:01:30 +00:00
* feat: add @standardnotes/encryption package * fix: mobile dependency on encryption package * fix: order of build & lint in pr workflows * fix: web dependency on encryption package * fix: remove encryption package composite configuration * fix: import order
28 lines
556 B
YAML
28 lines
556 B
YAML
name: General PR
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 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: Build
|
|
run: yarn build:all
|
|
- name: ESLint
|
|
run: yarn lint
|
|
- name: Build Android
|
|
run: yarn android:bundle
|
|
- name: Test
|
|
run: yarn test
|