mirror of
https://github.com/logto-io/logto.git
synced 2025-02-03 21:48:55 -05:00
chore: setup schemas workflow
This commit is contained in:
parent
95716ca5a3
commit
9852d4eeeb
2 changed files with 43 additions and 5 deletions
40
.github/workflows/schemas-main.yml
vendored
Normal file
40
.github/workflows/schemas-main.yml
vendored
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
name: Schemas
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
paths: [ 'packages/schemas/**' ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
paths: [ 'packages/schemas/**' ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
main:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
# https://github.com/actions/cache/blob/main/examples.md#node---yarn
|
||||||
|
- name: Get yarn cache directory path
|
||||||
|
id: yarn-cache-dir-path
|
||||||
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
||||||
|
|
||||||
|
- uses: actions/cache@v2
|
||||||
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
||||||
|
with:
|
||||||
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
||||||
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-yarn-
|
||||||
|
|
||||||
|
- name: Install packages
|
||||||
|
run: yarn bootstrap
|
||||||
|
|
||||||
|
- name: Lint
|
||||||
|
working-directory: packages/schemas
|
||||||
|
run: yarn lint
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
working-directory: packages/schemas
|
||||||
|
run: yarn build
|
8
.github/workflows/ui-main.yml
vendored
8
.github/workflows/ui-main.yml
vendored
|
@ -8,10 +8,6 @@ on:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
paths: [ 'packages/ui/**' ]
|
paths: [ 'packages/ui/**' ]
|
||||||
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
working-directory: packages/ui
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
main:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -33,10 +29,12 @@ jobs:
|
||||||
${{ runner.os }}-yarn-
|
${{ runner.os }}-yarn-
|
||||||
|
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: yarn
|
run: yarn bootstrap
|
||||||
|
|
||||||
- name: Lint
|
- name: Lint
|
||||||
|
working-directory: packages/ui
|
||||||
run: yarn lint && yarn stylelint
|
run: yarn lint && yarn stylelint
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
|
working-directory: packages/ui
|
||||||
run: yarn build
|
run: yarn build
|
||||||
|
|
Loading…
Add table
Reference in a new issue